diff --git a/Cargo.lock b/Cargo.lock index a8b97ff26f5f..b9382ce4dd3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7191,9 +7191,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.3.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d56477f6ed99e10225f38f9f75f872f29b8b8bd8c0b946f63345bb144e9eeda" +checksum = "588b2d10a336da58d877567cd8fb8a14b463e2104910f8132cd054b4b96e29ee" dependencies = [ "autocfg 1.0.1", "bytes", @@ -7264,9 +7264,9 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.4" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c535f53c0cfa1acace62995a8994fc9cc1f12d202420da96ff306ee24d576469" +checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3" dependencies = [ "futures-core", "pin-project-lite", diff --git a/diem-node/Cargo.toml b/diem-node/Cargo.toml index 01e57bc79cc5..048aa5b2624f 100644 --- a/diem-node/Cargo.toml +++ b/diem-node/Cargo.toml @@ -15,7 +15,7 @@ futures = "0.3.12" jemallocator = { version = "0.3.2", features = ["profiling", "unprefixed_malloc_on_supported_platforms"] } structopt = "0.3.21" tokio = { version = "1.3.0", features = ["full"] } -tokio-stream = "0.1.4" +tokio-stream = "0.1.8" backup-service = { path = "../storage/backup/backup-service" } consensus = { path = "../consensus" } diff --git a/mempool/Cargo.toml b/mempool/Cargo.toml index 045753e23b80..deb2ca258bb7 100644 --- a/mempool/Cargo.toml +++ b/mempool/Cargo.toml @@ -19,7 +19,7 @@ proptest = { version = "1.0.0", optional = true } rayon = "1.4.1" serde = { version = "1.0.124", default-features = false } tokio = { version = "1.3.0", features = ["full"] } -tokio-stream = "0.1.4" +tokio-stream = "0.1.8" bounded-executor = { path = "../common/bounded-executor" } channel = { path = "../common/channel" } diff --git a/network/Cargo.toml b/network/Cargo.toml index 71075b7072cf..03bee0daa3c1 100644 --- a/network/Cargo.toml +++ b/network/Cargo.toml @@ -26,7 +26,7 @@ serde_bytes = "0.11.5" thiserror = "1.0.24" tokio = { version = "1.3.0", features = ["full"] } tokio-retry = "0.3.0" -tokio-stream = "0.1.4" +tokio-stream = "0.1.8" tokio-util = { version = "0.6.4", features = ["compat", "codec"] } bitvec = { path = "../common/bitvec", package = "diem-bitvec" } diff --git a/state-sync/Cargo.toml b/state-sync/Cargo.toml index 9eea8549affb..2827e45f828c 100644 --- a/state-sync/Cargo.toml +++ b/state-sync/Cargo.toml @@ -20,7 +20,7 @@ rand = "0.8.3" serde = { version = "1.0.124", default-features = false } thiserror = "1.0.24" tokio = { version = "1.3.0", features = ["full"] } -tokio-stream = "0.1.4" +tokio-stream = "0.1.8" channel = { path = "../common/channel" } diem-config = { path = "../config" } diff --git a/storage/backup/backup-cli/Cargo.toml b/storage/backup/backup-cli/Cargo.toml index f2a416d6c055..5d83202f960c 100644 --- a/storage/backup/backup-cli/Cargo.toml +++ b/storage/backup/backup-cli/Cargo.toml @@ -27,7 +27,7 @@ serde_json = "1.0.64" structopt = "0.3.21" toml = "0.5.8" tokio = { version = "1.3.0", features = ["full"] } -tokio-stream = "0.1.4" +tokio-stream = "0.1.8" tokio-util = { version = "0.6.4", features = ["compat"] } executor = { path = "../../../execution/executor" }