From 1c65a8c2efece9bf441dfd5593c2ac833b825c13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Feb 2023 00:45:04 +0000 Subject: [PATCH] Bump tokio from 1.20.1 to 1.20.4 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.20.1 to 1.20.4. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.20.1...tokio-1.20.4) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 ++--- crates/backup/Cargo.toml | 2 +- crates/cli/Cargo.toml | 2 +- crates/coordinator/Cargo.toml | 2 +- crates/network/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3097d48..950b819 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1963,9 +1963,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.20.1" +version = "1.20.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" +checksum = "eb78f30e4b41e98ca4cce5acb51168a033839a7af9e42b380355808e14e98ee0" dependencies = [ "autocfg", "bytes", @@ -1973,7 +1973,6 @@ dependencies = [ "memchr", "mio", "num_cpus", - "once_cell", "parking_lot", "pin-project-lite", "signal-hook-registry", diff --git a/crates/backup/Cargo.toml b/crates/backup/Cargo.toml index 337a80f..6b29e98 100644 --- a/crates/backup/Cargo.toml +++ b/crates/backup/Cargo.toml @@ -12,7 +12,7 @@ pluto-network = { path = "../network" } zstd = { version = "0.11", features = ["experimental"] } # Async -tokio = { version = "1.19.2", features = ["sync", "fs", "io-util"] } +tokio = { version = "1.20.4", features = ["sync", "fs", "io-util"] } tokio-stream = { version = "0.1.9", features = ["fs"] } # Cryptography diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 1a51c6c..e90322a 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -10,7 +10,7 @@ pluto-network = { path = "../network" } pluto-node = { path = "../node" } # Async -tokio = { version = "1.18.2", features = ["rt-multi-thread", "macros", "sync", "signal"] } +tokio = { version = "1.20.4", features = ["rt-multi-thread", "macros", "sync", "signal"] } # CLI inquire = "0.3.0" diff --git a/crates/coordinator/Cargo.toml b/crates/coordinator/Cargo.toml index 899ddfe..10d8ef2 100644 --- a/crates/coordinator/Cargo.toml +++ b/crates/coordinator/Cargo.toml @@ -17,7 +17,7 @@ diesel_migrations = "1.4.0" getrandom = "0.2.6" # Async -tokio = { version = "1.18.2", features = ["rt-multi-thread", "macros", "sync", "signal"] } +tokio = { version = "1.20.4", features = ["rt-multi-thread", "macros", "sync", "signal"] } # Logging tracing = "0.1.34" diff --git a/crates/network/Cargo.toml b/crates/network/Cargo.toml index 48fa8b6..47ae6fe 100644 --- a/crates/network/Cargo.toml +++ b/crates/network/Cargo.toml @@ -28,7 +28,7 @@ getrandom = "0.2.6" thiserror = "1.0.31" lazy_static = "1.4.0" parking_lot = "0.12.1" -tokio = { version = "1.19.2", features = ["sync"] } +tokio = { version = "1.20.4", features = ["sync"] } bytes = "1.1.0" regex = "1.5.6" async-trait = "0.1.56"