From 7ddd387fa73d7162677fd73a48144efd2f5e33c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Apr 2022 19:11:15 +0000 Subject: [PATCH] Bump tokio-util from 0.6.9 to 0.7.1 Bumps [tokio-util](https://github.com/tokio-rs/tokio) from 0.6.9 to 0.7.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-util-0.6.9...tokio-util-0.7.1) --- updated-dependencies: - dependency-name: tokio-util dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 31 ++++++++++++++++++++++--------- explorer/Cargo.toml | 2 +- jormungandr/Cargo.toml | 2 +- 3 files changed, 24 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d5d4f4a438..a7d1209fdf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1487,7 +1487,7 @@ dependencies = [ "thiserror", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.7.1", "tonic 0.4.3", "tracing", "tracing-appender", @@ -1932,7 +1932,7 @@ dependencies = [ "indexmap", "slab", "tokio", - "tokio-util", + "tokio-util 0.6.9", "tracing", ] @@ -2429,7 +2429,7 @@ dependencies = [ "time", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.7.1", "tonic 0.6.2", "tracing", "tracing-appender", @@ -4907,7 +4907,7 @@ dependencies = [ "futures-core", "pin-project-lite", "tokio", - "tokio-util", + "tokio-util 0.6.9", ] [[package]] @@ -4934,6 +4934,19 @@ dependencies = [ "futures-sink", "log", "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", "slab", "tokio", ] @@ -4969,7 +4982,7 @@ dependencies = [ "prost-derive 0.7.0", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.6.9", "tower", "tower-service", "tracing", @@ -4999,7 +5012,7 @@ dependencies = [ "prost-derive 0.9.0", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.6.9", "tower", "tower-layer", "tower-service", @@ -5034,7 +5047,7 @@ dependencies = [ "slab", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.6.9", "tower-layer", "tower-service", "tracing", @@ -5120,7 +5133,7 @@ dependencies = [ "serde_json", "thiserror", "tokio", - "tokio-util", + "tokio-util 0.6.9", "tracing-core", "tracing-futures", "tracing-subscriber", @@ -5446,7 +5459,7 @@ dependencies = [ "tokio-rustls 0.22.0", "tokio-stream", "tokio-tungstenite", - "tokio-util", + "tokio-util 0.6.9", "tower-service", "tracing", ] diff --git a/explorer/Cargo.toml b/explorer/Cargo.toml index 68aea4d18a..9d88f84684 100644 --- a/explorer/Cargo.toml +++ b/explorer/Cargo.toml @@ -31,7 +31,7 @@ tracing-subscriber = { version = "0.3", features = ["fmt", "json"] } tracing-appender = "0.2" tokio = { version = "^1.4", features = ["rt-multi-thread", "time", "sync", "rt", "signal", "test-util"] } tokio-stream = { version = "0.1.4", features = ["sync"] } -tokio-util = { version = "0.6.0", features = ["time"] } +tokio-util = { version = "0.7.1", features = ["time"] } tonic = "0.4" multiaddr = { package = "parity-multiaddr", version = "0.11" } rand = "0.8.3" diff --git a/jormungandr/Cargo.toml b/jormungandr/Cargo.toml index 40289f06f9..2b95653d71 100644 --- a/jormungandr/Cargo.toml +++ b/jormungandr/Cargo.toml @@ -53,7 +53,7 @@ tracing-subscriber = { version = "0.3", features = ["fmt", "json", "time"] } tracing-appender = "0.2" tokio = { version = "^1.15", features = ["rt-multi-thread", "time", "sync", "rt", "signal", "test-util"] } tokio-stream = { version = "0.1.4", features = ["sync"] } -tokio-util = { version = "0.6.0", features = ["time"] } +tokio-util = { version = "0.7.1", features = ["time"] } tonic = "0.6" lru = "0.7" warp = { version = "0.3.2", features = ["tls"] }