Skip to content

Commit

Permalink
fix(deps): update rust crate tokio to 1.33.0 (#228)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 9, 2023
1 parent e7c4581 commit 81c3925
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/delete-db-content-migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion bin/delete-finalization-data-migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion bin/withdrawal-finalizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion chain-events/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion finalizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
4 changes: 2 additions & 2 deletions tx-sender/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion watcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down

0 comments on commit 81c3925

Please sign in to comment.