From 1154e2830a4bceba53fead7096aeda72fbef9707 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Mar 2021 05:50:29 +0000 Subject: [PATCH] Bump tokio-stream from 0.1.3 to 0.1.4 Bumps [tokio-stream](https://github.com/tokio-rs/tokio) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-stream-0.1.3...tokio-stream-0.1.4) Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- diem-node/Cargo.toml | 2 +- mempool/Cargo.toml | 2 +- network/Cargo.toml | 2 +- state-sync/Cargo.toml | 2 +- storage/backup/backup-cli/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8c9dd56a5f22..b307656d86b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7271,9 +7271,9 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1981ad97df782ab506a1f43bf82c967326960d278acf3bf8279809648c3ff3ea" +checksum = "c535f53c0cfa1acace62995a8994fc9cc1f12d202420da96ff306ee24d576469" dependencies = [ "futures-core", "pin-project-lite", diff --git a/diem-node/Cargo.toml b/diem-node/Cargo.toml index ef42f92dac7a..a6d3f9349351 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.2.0", features = ["full"] } -tokio-stream = "0.1.3" +tokio-stream = "0.1.4" backup-service = { path = "../storage/backup/backup-service" } consensus = { path = "../consensus" } diff --git a/mempool/Cargo.toml b/mempool/Cargo.toml index 720df0065d9d..790ad38b41eb 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.123", default-features = false } tokio = { version = "1.2.0", features = ["full"] } -tokio-stream = "0.1.3" +tokio-stream = "0.1.4" bounded-executor = { path = "../common/bounded-executor" } channel = { path = "../common/channel" } diff --git a/network/Cargo.toml b/network/Cargo.toml index aa93a28e0fe9..7a7c03ed1aa7 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.2.0", features = ["full"] } tokio-retry = "0.2.0" -tokio-stream = "0.1.3" +tokio-stream = "0.1.4" tokio-util = { version = "0.6.3", features = ["compat", "codec"] } bitvec = { path = "../common/bitvec", package = "diem-bitvec" } diff --git a/state-sync/Cargo.toml b/state-sync/Cargo.toml index 56158fb9f55f..b4308ac185b6 100644 --- a/state-sync/Cargo.toml +++ b/state-sync/Cargo.toml @@ -20,7 +20,7 @@ rand = "0.8.3" serde = { version = "1.0.123", default-features = false } thiserror = "1.0.24" tokio = { version = "1.2.0", features = ["full"] } -tokio-stream = "0.1.3" +tokio-stream = "0.1.4" 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 5325a9b18796..f4fdbb50d93f 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.2.0", features = ["full"] } -tokio-stream = "0.1.3" +tokio-stream = "0.1.4" tokio-util = { version = "0.6.3", features = ["compat"] } executor = { path = "../../../execution/executor" }