diff --git a/Cargo.lock b/Cargo.lock index c833bc75..69ef7c40 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4099,9 +4099,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.32.0" +version = "1.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" +checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" dependencies = [ "backtrace", "bytes", diff --git a/bin/delete-db-content-migration/Cargo.toml b/bin/delete-db-content-migration/Cargo.toml index 4cd356b3..c2a7a635 100644 --- a/bin/delete-db-content-migration/Cargo.toml +++ b/bin/delete-db-content-migration/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" color-eyre = "0.6.2" eyre = "0.6.8" sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls"] } -tokio = { version = "1.32.0", features = ["full"] } +tokio = { version = "1.33.0", features = ["full"] } storage = { path = "../../storage" } dotenvy = "0.15.7" diff --git a/bin/delete-finalization-data-migration/Cargo.toml b/bin/delete-finalization-data-migration/Cargo.toml index 4ad86412..59667c75 100644 --- a/bin/delete-finalization-data-migration/Cargo.toml +++ b/bin/delete-finalization-data-migration/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" color-eyre = "0.6.2" eyre = "0.6.8" sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls"] } -tokio = { version = "1.32.0", features = ["full"] } +tokio = { version = "1.33.0", features = ["full"] } storage = { path = "../../storage" } dotenvy = "0.15.7" diff --git a/bin/withdrawal-finalizer/Cargo.toml b/bin/withdrawal-finalizer/Cargo.toml index 59dd5534..a9007698 100644 --- a/bin/withdrawal-finalizer/Cargo.toml +++ b/bin/withdrawal-finalizer/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" color-eyre = "0.6.2" ethers = { version = "2.0.10", default-features = false, features = ["ws", "rustls"] } serde = "1.0.188" -tokio = { version = "1.32.0", features = ["full"] } +tokio = { version = "1.33.0", features = ["full"] } url = { version = "2.4.1", features = ["serde"] } eyre = "0.6.8" tokio-stream = "0.1.14" diff --git a/chain-events/Cargo.toml b/chain-events/Cargo.toml index 1c243d4d..4e4ddc81 100644 --- a/chain-events/Cargo.toml +++ b/chain-events/Cargo.toml @@ -14,7 +14,7 @@ ethers = { version = "2.0.10", features = ["ws"] } futures = "0.3.28" metrics = "0.21.1" thiserror = "1.0.49" -tokio = { version = "1.32.0", features = ["time"] } +tokio = { version = "1.33.0", features = ["time"] } vlog = { path = "../vlog" } ethers-log-decode = { path = "../ethers-log-decode" } diff --git a/client/Cargo.toml b/client/Cargo.toml index 0362bc06..7e6ed05e 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -18,7 +18,7 @@ auto_impl = "1.1.0" ethers-log-decode = { path = "../ethers-log-decode" } lru = "0.12.0" lazy_static = "1.4.0" -tokio = "1.32.0" +tokio = "1.33.0" [dev-dependencies] hex = "0.4" diff --git a/finalizer/Cargo.toml b/finalizer/Cargo.toml index 5dadf151..c03fd286 100644 --- a/finalizer/Cargo.toml +++ b/finalizer/Cargo.toml @@ -12,7 +12,7 @@ futures = "0.3.28" metrics = "0.21.1" thiserror = "1.0.49" sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls"] } -tokio = { version = "1.32.0", features = ["time"] } +tokio = { version = "1.33.0", features = ["time"] } client = { path = "../client" } storage = { path = "../storage" } diff --git a/tx-sender/Cargo.toml b/tx-sender/Cargo.toml index 88f9ad4f..45395154 100644 --- a/tx-sender/Cargo.toml +++ b/tx-sender/Cargo.toml @@ -9,10 +9,10 @@ edition = "2021" [dependencies] ethers = "2.0.10" metrics = "0.21.1" -tokio = { version = "1.32.0", features = ["time"] } +tokio = { version = "1.33.0", features = ["time"] } vlog = { path = "../vlog" } [dev-dependencies] -tokio = { version = "1.32.0", features = ["rt", "rt-multi-thread", "macros"] } +tokio = { version = "1.33.0", features = ["rt", "rt-multi-thread", "macros"] } pretty_assertions = "1" diff --git a/watcher/Cargo.toml b/watcher/Cargo.toml index 3a66a386..9bcb2558 100644 --- a/watcher/Cargo.toml +++ b/watcher/Cargo.toml @@ -13,7 +13,7 @@ futures = "0.3.28" metrics = "0.21.1" thiserror = "1.0.49" sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls"] } -tokio = { version = "1.32.0", features = ["time"] } +tokio = { version = "1.33.0", features = ["time"] } client = { path = "../client" } chain-events = { path = "../chain-events" }