Bump tokio from 1.20.1 to 1.21.0 (#1016)

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

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

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-05 14:37:31 +10:00 committed by GitHub
parent 65a5215b43
commit f2feb88310
8 changed files with 9 additions and 9 deletions

4
Cargo.lock generated
View file

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

View file

@ -16,7 +16,7 @@ reqwest = { version = "^0.11.11", features=["cookies", "json", "native-tls"] }
kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha.8" } kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha.8" }
serde = { version = "^1.0.142", features = ["derive"] } serde = { version = "^1.0.142", features = ["derive"] }
serde_json = "^1.0.83" serde_json = "^1.0.83"
tokio = { version = "^1.20.0", features = ["rt", "net", "time", "macros", "sync", "signal"] } tokio = { version = "^1.21.0", features = ["rt", "net", "time", "macros", "sync", "signal"] }
toml = "^0.5.9" toml = "^0.5.9"
uuid = { version = "^1.1.2", features = ["serde", "v4"] } uuid = { version = "^1.1.2", features = ["serde", "v4"] }
url = { version = "^2.2.2", features = ["serde"] } url = { version = "^2.2.2", features = ["serde"] }

View file

@ -44,7 +44,7 @@ shellexpand = "^2.1.2"
time = { version = "=0.2.27", features = ["serde", "std"] } time = { version = "=0.2.27", features = ["serde", "std"] }
tracing = "^0.1.35" tracing = "^0.1.35"
tracing-subscriber = { version = "^0.3.14", features = ["env-filter", "fmt"] } tracing-subscriber = { version = "^0.3.14", features = ["env-filter", "fmt"] }
tokio = { version = "^1.20.0", features = ["rt", "macros"] } tokio = { version = "^1.21.0", features = ["rt", "macros"] }
url = { version = "^2.2.2", features = ["serde"] } url = { version = "^2.2.2", features = ["serde"] }
uuid = "^1.1.2" uuid = "^1.1.2"
webauthn-authenticator-rs = { version = "0.4.5", features = ["u2fhid"] } webauthn-authenticator-rs = { version = "0.4.5", features = ["u2fhid"] }

View file

@ -52,7 +52,7 @@ sketching = { path = "../sketching" }
toml = "^0.5.9" toml = "^0.5.9"
rpassword = "^7.0.0" rpassword = "^7.0.0"
tokio = { version = "^1.20.0", features = ["rt", "macros", "sync", "time", "net", "io-util"] } tokio = { version = "^1.21.0", features = ["rt", "macros", "sync", "time", "net", "io-util"] }
tokio-util = { version = "^0.7.3", features = ["codec"] } tokio-util = { version = "^0.7.3", features = ["codec"] }
futures = "^0.3.21" futures = "^0.3.21"

View file

@ -24,7 +24,7 @@ sketching = { path = "../../sketching" }
clap = { version = "^3.2", features = ["derive", "env"] } clap = { version = "^3.2", features = ["derive", "env"] }
serde = { version = "^1.0.142", features = ["derive"] } serde = { version = "^1.0.142", features = ["derive"] }
tokio = { version = "^1.20.0", features = ["rt-multi-thread", "macros", "signal"] } tokio = { version = "^1.21.0", features = ["rt-multi-thread", "macros", "signal"] }
toml = "0.5.9" toml = "0.5.9"
[target.'cfg(target_family = "windows")'.dependencies] [target.'cfg(target_family = "windows")'.dependencies]

View file

@ -50,7 +50,7 @@ smolset = "^1.3.1"
sshkeys = "^0.3.1" sshkeys = "^0.3.1"
tide = "^0.16.0" tide = "^0.16.0"
time = { version = "=0.2.27", features = ["serde", "std"] } time = { version = "=0.2.27", features = ["serde", "std"] }
tokio = { version = "^1.20.0", features = ["net", "sync", "time"] } tokio = { version = "^1.21.0", features = ["net", "sync", "time"] }
tokio-util = { version = "^0.7.3", features = ["codec"] } tokio-util = { version = "^0.7.3", features = ["codec"] }
toml = "^0.5.9" toml = "^0.5.9"
touch = "^0.0.1" touch = "^0.0.1"

View file

@ -31,7 +31,7 @@ tide = "^0.16.0"
# I tried including brotli and it didn't work, including "default" pulls a mime-type list from the internet on build # I tried including brotli and it didn't work, including "default" pulls a mime-type list from the internet on build
tide-compress = { version = "0.10.6", default-features = false, features = [ "deflate", "gzip", "regex-check" ] } tide-compress = { version = "0.10.6", default-features = false, features = [ "deflate", "gzip", "regex-check" ] }
tide-openssl = "^0.1.1" tide-openssl = "^0.1.1"
tokio = { version = "^1.20.0", features = ["net", "sync", "io-util", "macros"] } tokio = { version = "^1.21.0", features = ["net", "sync", "io-util", "macros"] }
tokio-openssl = "^0.6.3" tokio-openssl = "^0.6.3"
tokio-util = { version = "^0.7.3", features = ["codec"] } tokio-util = { version = "^0.7.3", features = ["codec"] }
tracing = { version = "^0.1.35", features = ["attributes"] } tracing = { version = "^0.1.35", features = ["attributes"] }

View file

@ -28,7 +28,7 @@ openssl = "^0.10.41"
rand = "^0.8.5" rand = "^0.8.5"
serde = { version = "^1.0.142", features = ["derive"] } serde = { version = "^1.0.142", features = ["derive"] }
serde_json = "^1.0.83" serde_json = "^1.0.83"
tokio = { version = "^1.20.0", features = ["rt-multi-thread"] } tokio = { version = "^1.21.0", features = ["rt-multi-thread"] }
tokio-openssl = "^0.6.3" tokio-openssl = "^0.6.3"
tokio-util = { version = "^0.7.3", features = ["codec"] } tokio-util = { version = "^0.7.3", features = ["codec"] }
toml = "^0.5.9" toml = "^0.5.9"