diff --git a/Cargo.lock b/Cargo.lock index 1d377567..b43a537a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2321,7 +2321,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.4.10", + "socket2 0.5.7", "tokio", "tower-service", "tracing", @@ -6014,9 +6014,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.36.0" +version = "1.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" +checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" dependencies = [ "backtrace", "bytes", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index ee2d7fec..ad4d114b 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -30,7 +30,7 @@ serde_with = "3.7.0" serde_urlencoded = "0.7.1" serde_json.workspace = true thiserror.workspace = true -tokio = "1.36.0" +tokio = "1.37.0" tower.workspace = true tracing.workspace = true url.workspace = true diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 523a2a21..87dfe5dd 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -31,7 +31,7 @@ rustls.workspace = true serde_json.workspace = true serde_yaml = "0.9.34" sqlx.workspace = true -tokio = { version = "1.36.0", features = ["full"] } +tokio = { version = "1.37.0", features = ["full"] } tower.workspace = true tower-http = { version = "0.4.4", features = ["fs"] } url.workspace = true diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index b01dbb8d..84d302d2 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -12,7 +12,7 @@ publish = false workspace = true [dependencies] -tokio = { version = "1.36.0", features = ["fs", "rt"] } +tokio = { version = "1.37.0", features = ["fs", "rt"] } tracing.workspace = true thiserror.workspace = true diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index 39c7f8d0..08bc9bc1 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -19,7 +19,7 @@ chrono.workspace = true lettre = { version = "0.11.4", default-features = false } serde.workspace = true thiserror.workspace = true -tokio = { version = "1.36.0", features = ["sync"] } +tokio = { version = "1.37.0", features = ["sync"] } tracing.workspace = true tower.workspace = true ulid.workspace = true diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 18060bb9..f009944f 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -13,7 +13,7 @@ workspace = true [dependencies] # Async runtime -tokio = { version = "1.36.0", features = ["macros"] } +tokio = { version = "1.37.0", features = ["macros"] } futures-util = "0.3.30" # Logging and tracing diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 0afbef1e..8693731f 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -36,7 +36,7 @@ mas-tower = { workspace = true, optional = true } [dev-dependencies] anyhow.workspace = true -tokio = { version = "1.36.0", features = ["macros", "rt"] } +tokio = { version = "1.37.0", features = ["macros", "rt"] } [features] client = [ diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index 2aeec55e..54ae1d87 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -20,6 +20,6 @@ csv = "1.3.0" futures-util = "0.3.30" hyper.workspace = true serde.workspace = true -tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread", "fs", "io-util"] } +tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "fs", "io-util"] } tracing.workspace = true tracing-subscriber.workspace = true diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index 9134297b..4dec7c96 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -21,7 +21,7 @@ libc = "0.2.154" pin-project-lite = "0.2.14" socket2 = "0.5.7" thiserror.workspace = true -tokio = { version = "1.36.0", features = ["net", "rt", "macros", "signal", "time"] } +tokio = { version = "1.37.0", features = ["net", "rt", "macros", "signal", "time"] } tokio-rustls = "0.25.0" tower-http = { version = "0.4.4", features = ["add-extension"] } tower-service = "0.3.2" @@ -30,7 +30,7 @@ tracing.workspace = true [dev-dependencies] anyhow.workspace = true rustls-pemfile = "2.1.1" -tokio = { version = "1.36.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] } +tokio = { version = "1.37.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] } tokio-test = "0.4.4" tracing-subscriber.workspace = true diff --git a/crates/matrix/Cargo.toml b/crates/matrix/Cargo.toml index a8d3524f..0055e1de 100644 --- a/crates/matrix/Cargo.toml +++ b/crates/matrix/Cargo.toml @@ -16,5 +16,5 @@ anyhow.workspace = true serde.workspace = true async-trait.workspace = true http.workspace = true -tokio = { version = "1.36.0", features = ["sync", "macros", "rt"] } +tokio = { version = "1.37.0", features = ["sync", "macros", "rt"] } url.workspace = true diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index 47e35ea1..18bd3f86 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -67,5 +67,5 @@ assert_matches = "1.5.0" bitflags = "2.5.0" mas-keystore.workspace = true rand_chacha = "0.3.1" -tokio = { version = "1.36.0", features = ["rt", "macros", "rt-multi-thread"] } +tokio = { version = "1.37.0", features = ["rt", "macros", "rt-multi-thread"] } wiremock = "0.6.0" diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index b40deb1e..3450b922 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -18,7 +18,7 @@ serde.workspace = true serde_json.workspace = true schemars = { workspace = true, optional = true } thiserror.workspace = true -tokio = { version = "1.36.0", features = ["io-util", "rt"] } +tokio = { version = "1.37.0", features = ["io-util", "rt"] } tracing.workspace = true wasmtime = { version = "18.0.3", default-features = false, features = ["async", "cranelift"] } @@ -26,7 +26,7 @@ mas-data-model.workspace = true oauth2-types.workspace = true [dev-dependencies] -tokio = { version = "1.36.0", features = ["fs", "rt", "macros"] } +tokio = { version = "1.37.0", features = ["fs", "rt", "macros"] } [features] cache = ["wasmtime/cache"] diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index d6d6093c..220ae4fe 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -24,7 +24,7 @@ rand.workspace = true rand_chacha = "0.3.1" sqlx.workspace = true thiserror.workspace = true -tokio = { version = "1.36.0", features = ["rt"] } +tokio = { version = "1.37.0", features = ["rt"] } tower.workspace = true tracing.workspace = true tracing-opentelemetry.workspace = true diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 1abb4eb8..144c2ea9 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -14,7 +14,7 @@ workspace = true [dependencies] arc-swap = "1.7.1" tracing.workspace = true -tokio = { version = "1.36.0", features = ["macros", "rt", "fs"] } +tokio = { version = "1.37.0", features = ["macros", "rt", "fs"] } walkdir = "2.5.0" anyhow.workspace = true diff --git a/crates/tower/Cargo.toml b/crates/tower/Cargo.toml index 3e27768a..1545df20 100644 --- a/crates/tower/Cargo.toml +++ b/crates/tower/Cargo.toml @@ -16,7 +16,7 @@ http.workspace = true tracing.workspace = true tracing-opentelemetry.workspace = true tower.workspace = true -tokio = { version = "1.36.0", features = ["time"] } +tokio = { version = "1.37.0", features = ["time"] } opentelemetry.workspace = true opentelemetry-http.workspace = true opentelemetry-semantic-conventions.workspace = true