chore(deps): bump tokio-util from 0.7.1 to 0.7.2 (#1270)

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

---
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] 2022-05-16 10:21:27 -07:00 committed by GitHub
parent 7afae38623
commit 6053c928b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

6
Cargo.lock generated
View File

@ -1353,7 +1353,7 @@ dependencies = [
"thiserror",
"tokio",
"tokio-tungstenite",
"tokio-util 0.7.1",
"tokio-util 0.7.2",
"tracing",
"tracing-futures",
"url",
@ -3912,9 +3912,9 @@ dependencies = [
[[package]]
name = "tokio-util"
version = "0.7.1"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764"
checksum = "f988a1a1adc2fb21f9c12aa96441da33a1728193ae0b95d2be22dbd17fcb4e5c"
dependencies = [
"bytes",
"futures-core",

View File

@ -44,7 +44,7 @@ hashers = "1.0.1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# tokio
tokio-util = { version = "0.7.1", default-features = false, features = ["io"], optional = true }
tokio-util = { version = "0.7.2", default-features = false, features = ["io"], optional = true }
tokio = { version = "1.5", default-features = false, optional = true }
tokio-tungstenite = { version = "0.17.1", default-features = false, features = ["connect"], optional = true }