diff --git a/Cargo.lock b/Cargo.lock index a726474b..5721beea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6280,9 +6280,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.29.0" +version = "1.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "374442f06ee49c3a28a8fc9f01a2596fed7559c6b99b31279c3261778e77d84f" +checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" dependencies = [ "autocfg", "backtrace", diff --git a/deferred-rate-limiter/Cargo.toml b/deferred-rate-limiter/Cargo.toml index 8f2fd057..4eb5821c 100644 --- a/deferred-rate-limiter/Cargo.toml +++ b/deferred-rate-limiter/Cargo.toml @@ -11,6 +11,6 @@ anyhow = "1.0.71" hashbrown = "0.14.0" log = "0.4.19" moka = { version = "0.11.2", features = ["future"] } -tokio = "1.29.0" +tokio = "1.29.1" tracing = "0.1.37" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/latency/Cargo.toml b/latency/Cargo.toml index fe09f165..8a44097c 100644 --- a/latency/Cargo.toml +++ b/latency/Cargo.toml @@ -10,10 +10,10 @@ flume = "0.10.14" log = "0.4.19" portable-atomic = { version = "1.3.3", features = ["float"] } serde = { version = "1.0.164", features = [] } -tokio = { version = "1.29.0", features = ["full"] } +tokio = { version = "1.29.1", features = ["full"] } tracing = "0.1.37" watermill = "0.1.1" workspace-hack = { version = "0.1", path = "../workspace-hack" } [dev-dependencies] -tokio = { version = "1.29.0", features = ["full", "test-util"] } +tokio = { version = "1.29.1", features = ["full", "test-util"] } diff --git a/migration/Cargo.toml b/migration/Cargo.toml index 819d3e08..b8577c03 100644 --- a/migration/Cargo.toml +++ b/migration/Cargo.toml @@ -9,7 +9,7 @@ name = "migration" path = "src/lib.rs" [dependencies] -tokio = { version = "1.29.0", features = ["full", "tracing"] } +tokio = { version = "1.29.1", features = ["full", "tracing"] } workspace-hack = { version = "0.1", path = "../workspace-hack" } [dependencies.sea-orm-migration] diff --git a/rate-counter/Cargo.toml b/rate-counter/Cargo.toml index a34c183a..349c4685 100644 --- a/rate-counter/Cargo.toml +++ b/rate-counter/Cargo.toml @@ -5,5 +5,5 @@ authors = ["Bryan Stitt "] edition = "2021" [dependencies] -tokio = { version = "1.29.0", features = ["time"] } +tokio = { version = "1.29.1", features = ["time"] } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/redis-rate-limiter/Cargo.toml b/redis-rate-limiter/Cargo.toml index 3d580c94..6952213d 100644 --- a/redis-rate-limiter/Cargo.toml +++ b/redis-rate-limiter/Cargo.toml @@ -8,5 +8,5 @@ edition = "2021" anyhow = "1.0.71" chrono = "0.4.26" deadpool-redis = { version = "0.12.0", features = ["rt_tokio_1", "serde"] } -tokio = "1.29.0" +tokio = "1.29.1" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/web3_proxy/Cargo.toml b/web3_proxy/Cargo.toml index 9bdc4050..d7ab286e 100644 --- a/web3_proxy/Cargo.toml +++ b/web3_proxy/Cargo.toml @@ -94,7 +94,7 @@ serde_prometheus = "0.2.3" strum = { version = "0.25.0", features = ["derive"] } time_01 = { package = "time", version = "0.1" } time_03 = { package = "time", version = "0.3" } -tokio = { version = "1.29.0", features = ["full", "tracing"] } +tokio = { version = "1.29.1", features = ["full", "tracing"] } tokio-console = { version = "0.1.8", optional = true } tokio-stream = { version = "0.1.14", features = ["sync"] } tokio-uring = { version = "0.4.0", optional = true } @@ -115,6 +115,6 @@ test-log = { version = "0.2.12", default-features = false, features = ["trace"] [dev-dependencies] env_logger = "0.10" test-log = "0.2.12" -tokio = { version = "1.29.0", features = ["full", "test-util"] } +tokio = { version = "1.29.1", features = ["full", "test-util"] } tracing = {version = "0.1", default-features = false} tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}