diff --git a/Cargo.lock b/Cargo.lock index 60005684..d061a0d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5231,9 +5231,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.23.1" +version = "1.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38a54aca0c15d014013256222ba0ebed095673f89345dd79119d912eb561b7a8" +checksum = "1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae" dependencies = [ "autocfg", "bytes 1.3.0", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index f67f427e..ec9bc076 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -23,7 +23,7 @@ serde_urlencoded = "0.7.1" serde_json = "1.0.91" sqlx = "0.6.2" thiserror = "1.0.38" -tokio = "1.23.1" +tokio = "1.24.1" tower = { version = "0.4.13", features = ["util"] } tracing = "0.1.37" url = "2.3.1" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index c23dd37b..f6ec0824 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -21,7 +21,7 @@ rustls = "0.20.7" serde_json = "1.0.91" serde_yaml = "0.9.16" sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] } -tokio = { version = "1.23.1", features = ["full"] } +tokio = { version = "1.24.1", features = ["full"] } tower = { version = "0.4.13", features = ["full"] } tower-http = { version = "0.3.5", features = ["fs", "compression-full"] } url = "2.3.1" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index a9817421..b21ac437 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -tokio = { version = "1.23.1", features = ["fs", "rt"] } +tokio = { version = "1.24.1", features = ["fs", "rt"] } tracing = { version = "0.1.37" } async-trait = "0.1.60" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 1845b9b1..8fbe4fc0 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] # Async runtime -tokio = { version = "1.23.1", features = ["macros"] } +tokio = { version = "1.24.1", features = ["macros"] } futures-util = "0.3.25" # Logging and tracing diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 1719a079..80c909f1 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -26,7 +26,7 @@ serde = "1.0.152" serde_json = "1.0.91" serde_urlencoded = "0.7.1" thiserror = "1.0.38" -tokio = { version = "1.23.1", features = ["sync", "parking_lot"], optional = true } +tokio = { version = "1.24.1", features = ["sync", "parking_lot"], optional = true } tower = { version = "0.4.13", features = [] } tower-http = { version = "0.3.5", features = ["cors"] } tracing = "0.1.37" @@ -37,7 +37,7 @@ webpki-roots = { version = "0.22.6", optional = true } [dev-dependencies] anyhow = "1.0.68" serde = { version = "1.0.152", features = ["derive"] } -tokio = { version = "1.23.1", features = ["macros", "rt"] } +tokio = { version = "1.24.1", features = ["macros", "rt"] } tower = { version = "0.4.13", features = ["util"] } [features] diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index 9a5712a9..93256267 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -14,6 +14,6 @@ csv = "1.1.6" futures-util = "0.3.25" reqwest = { version = "0.11.13", features = ["blocking", "rustls-tls"], default-features = false } serde = { version = "1.0.152", features = ["derive"] } -tokio = { version = "1.23.1", features = ["full"] } +tokio = { version = "1.24.1", features = ["full"] } tracing = "0.1.37" tracing-subscriber = "0.3.16" diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index 75391a33..24215c72 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -12,7 +12,7 @@ http-body = "0.4.5" hyper = { version = "0.14.23", features = ["server", "http1", "http2", "tcp"] } pin-project-lite = "0.2.9" thiserror = "1.0.38" -tokio = { version = "1.23.1", features = ["net", "rt", "macros", "signal", "time"] } +tokio = { version = "1.24.1", features = ["net", "rt", "macros", "signal", "time"] } tokio-rustls = "0.23.4" tower-http = { version = "0.3.5", features = ["add-extension"] } tower-service = "0.3.2" @@ -22,7 +22,7 @@ libc = "0.2.139" [dev-dependencies] anyhow = "1.0.68" rustls-pemfile = "1.0.1" -tokio = { version = "1.23.1", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] } +tokio = { version = "1.24.1", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] } tokio-test = "0.4.2" tracing-subscriber = "0.3.16" diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index 8cd12daf..ebf2cece 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -35,7 +35,7 @@ serde_json = "1.0.91" serde_urlencoded = "0.7.1" serde_with = "2.1.0" thiserror = "1.0.38" -tokio = { version = "1.23.1", features = ["rt", "macros", "rt-multi-thread"] } +tokio = { version = "1.24.1", features = ["rt", "macros", "rt-multi-thread"] } tower = { version = "0.4.13", features = ["full"] } tracing = "0.1.37" url = { version = "2.3.1", features = ["serde"] } diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index f1a69e08..71e20fdb 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -11,7 +11,7 @@ opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" thiserror = "1.0.38" -tokio = { version = "1.23.1", features = ["io-util"] } +tokio = { version = "1.24.1", features = ["io-util"] } tracing = "0.1.37" wasmtime = { version = "4.0.0", default-features = false, features = ["async", "cranelift"] } @@ -19,7 +19,7 @@ mas-data-model = { path = "../data-model" } oauth2-types = { path = "../oauth2-types" } [dev-dependencies] -tokio = { version = "1.23.1", features = ["fs", "rt", "macros"] } +tokio = { version = "1.24.1", features = ["fs", "rt", "macros"] } [features] cache = ["wasmtime/cache"] diff --git a/crates/spa/Cargo.toml b/crates/spa/Cargo.toml index cc88a072..a35108ea 100644 --- a/crates/spa/Cargo.toml +++ b/crates/spa/Cargo.toml @@ -14,7 +14,7 @@ headers = "0.3.8" http = "0.2.8" tower-service = "0.3.2" tower-http = { version = "0.3.5", features = ["fs"] } -tokio = { version = "1.23.1", features = ["fs"] } +tokio = { version = "1.24.1", features = ["fs"] } [[bin]] name = "render" diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index 3d34dda5..82d480d5 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -tokio = "1.23.1" +tokio = "1.24.1" async-trait = "0.1.60" tokio-stream = "0.1.11" futures-util = "0.3.25" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index c671c0c9..f37d4fde 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] tracing = "0.1.37" -tokio = { version = "1.23.1", features = ["macros", "rt"] } +tokio = { version = "1.24.1", features = ["macros", "rt"] } anyhow = "1.0.68" thiserror = "1.0.38"