From 4159ea4192a2c5484e1b9fd91e001402d5ccfce2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 12 Aug 2023 22:44:29 +0300 Subject: [PATCH] fix(deps): update rust crate tokio to 1.31.0 (#117) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- bin/withdrawal-finalizer/Cargo.toml | 2 +- chain-events/Cargo.toml | 2 +- finalizer/Cargo.toml | 2 +- watcher/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 46de56e6..d9363463 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4054,9 +4054,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.30.0" +version = "1.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd" +checksum = "40de3a2ba249dcb097e01be5e67a5ff53cf250397715a071a81543e8a832a920" dependencies = [ "backtrace", "bytes", diff --git a/bin/withdrawal-finalizer/Cargo.toml b/bin/withdrawal-finalizer/Cargo.toml index 27308c7b..b0a6d926 100644 --- a/bin/withdrawal-finalizer/Cargo.toml +++ b/bin/withdrawal-finalizer/Cargo.toml @@ -10,7 +10,7 @@ clap = { version = "4.3.21", features = ["derive", "string"] } color-eyre = "0.6.2" ethers = { version = "2.0.8", default-features = false, features = ["ws", "rustls"] } serde = "1.0.183" -tokio = { version = "1.30.0", features = ["full"] } +tokio = { version = "1.31.0", features = ["full"] } toml = "0.7.6" url = { version = "2.4.0", features = ["serde"] } eyre = "0.6.8" diff --git a/chain-events/Cargo.toml b/chain-events/Cargo.toml index b9cdb90f..49d0209f 100644 --- a/chain-events/Cargo.toml +++ b/chain-events/Cargo.toml @@ -11,7 +11,7 @@ ethers = { version = "2.0.8", features = ["ws"] } futures = "0.3.28" metrics = "0.21.1" thiserror = "1.0.44" -tokio = { version = "1.30.0", features = ["time"] } +tokio = { version = "1.31.0", features = ["time"] } vlog = { path = "../vlog" } ethers-log-decode = { path = "../ethers-log-decode" } diff --git a/finalizer/Cargo.toml b/finalizer/Cargo.toml index 0e7e8a3d..9b7eed50 100644 --- a/finalizer/Cargo.toml +++ b/finalizer/Cargo.toml @@ -9,7 +9,7 @@ futures = "0.3.28" metrics = "0.21.1" thiserror = "1.0.44" sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls"] } -tokio = { version = "1.30.0", features = ["time"] } +tokio = { version = "1.31.0", features = ["time"] } client = { path = "../client" } storage = { path = "../storage" } diff --git a/watcher/Cargo.toml b/watcher/Cargo.toml index dc708b4e..c00c15c2 100644 --- a/watcher/Cargo.toml +++ b/watcher/Cargo.toml @@ -10,7 +10,7 @@ futures = "0.3.28" metrics = "0.21.1" thiserror = "1.0.44" sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls"] } -tokio = { version = "1.30.0", features = ["time"] } +tokio = { version = "1.31.0", features = ["time"] } client = { path = "../client" } chain-events = { path = "../chain-events" }