chore(deps): bump tokio-util from 0.7.0 to 0.7.1 (#1089)

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

---
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-03-28 22:16:53 -07:00 committed by GitHub
parent 110d1beeed
commit fdd2d902c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

7
Cargo.lock generated
View File

@ -1331,7 +1331,7 @@ dependencies = [
"thiserror",
"tokio",
"tokio-tungstenite",
"tokio-util 0.7.0",
"tokio-util 0.7.1",
"tracing",
"tracing-futures",
"url",
@ -3859,14 +3859,13 @@ dependencies = [
[[package]]
name = "tokio-util"
version = "0.7.0"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64910e1b9c1901aaf5375561e35b9c057d95ff41a44ede043a03e09279eabaf1"
checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"log",
"pin-project-lite",
"tokio",
]

View File

@ -43,7 +43,7 @@ once_cell = "1.10.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# tokio
tokio-util = { version = "0.7.0", default-features = false, features = ["io"], optional = true }
tokio-util = { version = "0.7.1", 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 }