From d96272113e4f60ebaf01a334067c60dd05ed3f7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Apr 2025 02:12:20 +0000 Subject: [PATCH] build(deps): bump tokio from 1.38.0 to 1.38.2 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.38.0 to 1.38.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.38.0...tokio-1.38.2) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.38.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- graph/Cargo.toml | 2 +- tests/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33815c70807..44e65be1051 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5294,9 +5294,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.38.0" +version = "1.38.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" +checksum = "68722da18b0fc4a05fdc1120b302b82051265792a1e1b399086e9b204b10ad3d" dependencies = [ "backtrace", "bytes", diff --git a/Cargo.toml b/Cargo.toml index b938992bc30..00e60830440 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ strum = { version = "0.26", features = ["derive"] } syn = { version = "2.0.87", features = ["full"] } test-store = { path = "./store/test-store" } thiserror = "1.0.25" -tokio = { version = "1.38.0", features = ["full"] } +tokio = { version = "1.38.2", features = ["full"] } tonic = { version = "0.12.3", features = ["tls-roots", "gzip"] } tonic-build = { version = "0.12.3", features = ["prost"] } tower-http = { version = "0.5.2", features = ["cors"] } diff --git a/graph/Cargo.toml b/graph/Cargo.toml index dc4bd6e42e9..804d087d016 100644 --- a/graph/Cargo.toml +++ b/graph/Cargo.toml @@ -65,7 +65,7 @@ slog-envlogger = "2.1.0" slog-term = "2.7.0" petgraph = "0.6.5" tiny-keccak = "1.5.0" -tokio = { version = "1.38.0", features = [ +tokio = { version = "1.38.2", features = [ "time", "sync", "macros", diff --git a/tests/Cargo.toml b/tests/Cargo.toml index ad4a4a9c785..db55f7413df 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -19,7 +19,7 @@ graph-runtime-wasm = { path = "../runtime/wasm" } serde = { workspace = true } serde_yaml = { workspace = true } slog = { version = "2.7.0", features = ["release_max_level_trace", "max_level_trace"] } -tokio = { version = "1.38.0", features = ["rt", "macros", "process"] } +tokio = { version = "1.38.2", features = ["rt", "macros", "process"] } # Once graph upgrades to web3 0.19, we don't need this anymore. The version # here needs to be kept in sync with the web3 version that the graph crate # uses until then