From 3b96df3b6d0a7bd31b7fdc752af80e3f177d0aca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 May 2022 13:12:06 +0000 Subject: [PATCH] Bump tokio-util from 0.6.9 to 0.7.2 Bumps [tokio-util](https://github.com/tokio-rs/tokio) from 0.6.9 to 0.7.2. - [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.2) --- updated-dependencies: - dependency-name: tokio-util dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 35 ++++++++++++++++++++++++----------- explorer/Cargo.toml | 2 +- jormungandr/Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index db5a7071a9..4ffd7031e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1514,7 +1514,7 @@ dependencies = [ "thiserror", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.7.2", "tonic 0.4.3", "tracing", "tracing-appender", @@ -1958,7 +1958,7 @@ dependencies = [ "indexmap", "slab", "tokio", - "tokio-util", + "tokio-util 0.6.10", "tracing", ] @@ -2458,7 +2458,7 @@ dependencies = [ "time", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.7.2", "tonic 0.6.2", "tracing", "tracing-appender", @@ -5024,7 +5024,7 @@ dependencies = [ "futures-core", "pin-project-lite", "tokio", - "tokio-util", + "tokio-util 0.6.10", ] [[package]] @@ -5042,15 +5042,28 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.6.9" +version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0" +checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" dependencies = [ "bytes", "futures-core", "futures-sink", "log", "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f988a1a1adc2fb21f9c12aa96441da33a1728193ae0b95d2be22dbd17fcb4e5c" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", "slab", "tokio", ] @@ -5086,7 +5099,7 @@ dependencies = [ "prost-derive 0.7.0", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.6.10", "tower", "tower-service", "tracing", @@ -5116,7 +5129,7 @@ dependencies = [ "prost-derive 0.9.0", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.6.10", "tower", "tower-layer", "tower-service", @@ -5151,7 +5164,7 @@ dependencies = [ "slab", "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.6.10", "tower-layer", "tower-service", "tracing", @@ -5237,7 +5250,7 @@ dependencies = [ "serde_json", "thiserror", "tokio", - "tokio-util", + "tokio-util 0.6.10", "tracing-core", "tracing-futures", "tracing-subscriber", @@ -5563,7 +5576,7 @@ dependencies = [ "tokio-rustls 0.22.0", "tokio-stream", "tokio-tungstenite", - "tokio-util", + "tokio-util 0.6.10", "tower-service", "tracing", ] diff --git a/explorer/Cargo.toml b/explorer/Cargo.toml index e75f69953d..8c32f767b3 100644 --- a/explorer/Cargo.toml +++ b/explorer/Cargo.toml @@ -30,7 +30,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.2", features = ["time"] } tonic = "0.4" multiaddr = { package = "parity-multiaddr", version = "0.11" } rand = "0.8.5" diff --git a/jormungandr/Cargo.toml b/jormungandr/Cargo.toml index f31eadb34c..67cdcd53ae 100644 --- a/jormungandr/Cargo.toml +++ b/jormungandr/Cargo.toml @@ -54,7 +54,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.2", features = ["time"] } tonic = "0.6" lru = "0.7" warp = { version = "0.3.2", features = ["tls"] }