diff --git a/Cargo.lock b/Cargo.lock index c4fe169fa46..b2c93ebe4b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5344,9 +5344,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.44.2" +version = "1.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" +checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165" dependencies = [ "backtrace", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 6a0a8a955fd..956aa205e67 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ strum = { version = "0.26", features = ["derive"] } syn = { version = "2.0.101", features = ["full"] } test-store = { path = "./store/test-store" } thiserror = "2.0.12" -tokio = { version = "1.44.2", features = ["full"] } +tokio = { version = "1.45.0", 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 452ede55ddc..1681be0dfdd 100644 --- a/graph/Cargo.toml +++ b/graph/Cargo.toml @@ -67,7 +67,7 @@ slog-envlogger = "2.1.0" slog-term = "2.7.0" petgraph = "0.8.1" tiny-keccak = "1.5.0" -tokio = { version = "1.44.2", features = [ +tokio = { version = "1.45.0", features = [ "time", "sync", "macros", diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 42d3aaf7d48..d718deaf6cd 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.44.2", features = ["rt", "macros", "process"] } +tokio = { version = "1.45.0", 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