diff --git a/Cargo.lock b/Cargo.lock index a8b97ff26f5f..2bb5e9ab21f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7264,9 +7264,9 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.4" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c535f53c0cfa1acace62995a8994fc9cc1f12d202420da96ff306ee24d576469" +checksum = "f8864d706fdb3cc0843a49647ac892720dac98a6eeb818b77190592cf4994066" dependencies = [ "futures-core", "pin-project-lite", diff --git a/diem-node/Cargo.toml b/diem-node/Cargo.toml index 01e57bc79cc5..16597c707fda 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.6" backup-service = { path = "../storage/backup/backup-service" } consensus = { path = "../consensus" } diff --git a/mempool/Cargo.toml b/mempool/Cargo.toml index 045753e23b80..af827309bd13 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.6" bounded-executor = { path = "../common/bounded-executor" } channel = { path = "../common/channel" } diff --git a/network/Cargo.toml b/network/Cargo.toml index 71075b7072cf..170efd7eec52 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.6" 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..c8046b34c6b3 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.6" 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..1d5124193625 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.6" tokio-util = { version = "0.6.4", features = ["compat"] } executor = { path = "../../../execution/executor" }