build(deps): bump tokio-util from 0.7.4 to 0.7.5 (#6128)

Bumps [tokio-util](https://github.com/tokio-rs/tokio) from 0.7.4 to 0.7.5.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-util-0.7.4...tokio-util-0.7.5)

---
updated-dependencies:
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-02-10 09:53:42 +00:00 committed by GitHub
parent 6adf2b5fd8
commit 4fda51f88f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 9 deletions

14
Cargo.lock generated
View File

@ -4357,7 +4357,7 @@ dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
"tokio-util 0.7.4",
"tokio-util 0.7.5",
]
[[package]]
@ -4389,9 +4389,9 @@ dependencies = [
[[package]]
name = "tokio-util"
version = "0.7.4"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
checksum = "7e267c18a719545b481171952a79f8c25c80361463ba44bc7fa9eba7c742ef4f"
dependencies = [
"bytes",
"futures-core",
@ -4468,7 +4468,7 @@ dependencies = [
"prost-derive",
"tokio",
"tokio-stream",
"tokio-util 0.7.4",
"tokio-util 0.7.5",
"tower",
"tower-layer",
"tower-service",
@ -4504,7 +4504,7 @@ dependencies = [
"rand 0.8.5",
"slab",
"tokio",
"tokio-util 0.7.4",
"tokio-util 0.7.5",
"tower-layer",
"tower-service",
"tracing",
@ -4524,7 +4524,7 @@ dependencies = [
"tinyvec",
"tokio",
"tokio-test",
"tokio-util 0.7.4",
"tokio-util 0.7.5",
"tower",
"tower-fallback",
"tower-test",
@ -5576,7 +5576,7 @@ dependencies = [
"thiserror",
"tokio",
"tokio-stream",
"tokio-util 0.7.4",
"tokio-util 0.7.5",
"toml 0.7.2",
"tower",
"tracing",

View File

@ -11,7 +11,7 @@ futures-core = "0.3.26"
pin-project = "1.0.12"
rayon = "1.6.1"
tokio = { version = "1.25.0", features = ["time", "sync", "tracing", "macros"] }
tokio-util = "0.7.4"
tokio-util = "0.7.5"
tower = { version = "0.4.13", features = ["util", "buffer"] }
tracing = "0.1.37"
tracing-futures = "0.2.5"

View File

@ -33,7 +33,7 @@ thiserror = "1.0.38"
futures = "0.3.26"
tokio = { version = "1.25.0", features = ["net", "time", "tracing", "macros", "rt-multi-thread"] }
tokio-stream = { version = "0.1.11", features = ["sync", "time"] }
tokio-util = { version = "0.7.4", features = ["codec"] }
tokio-util = { version = "0.7.5", features = ["codec"] }
tower = { version = "0.4.13", features = ["retry", "discover", "load", "load-shed", "timeout", "util", "buffer"] }
metrics = "0.20.1"