Bump tokio from 1.21.0 to 1.21.1 (#401)

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

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

Signed-off-by: dependabot[bot] <support@github.com>

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-09-22 14:31:15 +10:00 committed by GitHub
parent 1a1310f98b
commit ab87f19094
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View file

@ -1953,9 +1953,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]] [[package]]
name = "tokio" name = "tokio"
version = "1.21.0" version = "1.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89797afd69d206ccd11fb0ea560a44bbb87731d020670e79416d442919257d42" checksum = "0020c875007ad96677dcc890298f4b942882c5d4eb7cc8f439fc3bf813dc9c95"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"bytes", "bytes",

View file

@ -33,7 +33,7 @@ reqwest = { version = "0.11.11", default-features = false }
semver = "1.0.13" semver = "1.0.13"
simplelog = "0.12.0" simplelog = "0.12.0"
tempfile = "3.3.0" tempfile = "3.3.0"
tokio = { version = "1.20.1", features = ["rt-multi-thread"], default-features = false } tokio = { version = "1.21.1", features = ["rt-multi-thread"], default-features = false }
[build-dependencies] [build-dependencies]
embed-resource = "1.7.3" embed-resource = "1.7.3"

View file

@ -46,7 +46,7 @@ tar = { package = "binstall-tar", version = "0.4.39" }
tempfile = "3.3.0" tempfile = "3.3.0"
thiserror = "1.0.32" thiserror = "1.0.32"
tinytemplate = "1.2.1" tinytemplate = "1.2.1"
tokio = { version = "1.20.1", features = ["macros", "rt", "process", "sync", "signal"], default-features = false } tokio = { version = "1.21.1", features = ["macros", "rt", "process", "sync", "signal"], default-features = false }
toml_edit = { version = "0.14.4", features = ["easy"] } toml_edit = { version = "0.14.4", features = ["easy"] }
trust-dns-resolver = { version = "0.21.2", optional = true, default-features = false, features = ["dnssec-ring"] } trust-dns-resolver = { version = "0.21.2", optional = true, default-features = false, features = ["dnssec-ring"] }
url = { version = "2.2.2", features = ["serde"] } url = { version = "2.2.2", features = ["serde"] }

View file

@ -10,11 +10,11 @@ edition = "2021"
license = "Apache-2.0 OR MIT" license = "Apache-2.0 OR MIT"
[dependencies] [dependencies]
tokio = { version = "1.20.1", features = ["rt", "process", "sync"], default-features = false } tokio = { version = "1.21.1", features = ["rt", "process", "sync"], default-features = false }
cfg-if = "1.0.0" cfg-if = "1.0.0"
[target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies] [target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies]
guess_host_triple = "0.1.3" guess_host_triple = "0.1.3"
[dev-dependencies] [dev-dependencies]
tokio = { version = "1.20.1", features = ["macros"], default-features = false } tokio = { version = "1.21.1", features = ["macros"], default-features = false }