From f2feb88310f050c2aef01d6b54281110540afcb8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Sep 2022 14:37:31 +1000 Subject: [PATCH] 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] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- kanidm_client/Cargo.toml | 2 +- kanidm_tools/Cargo.toml | 2 +- kanidm_unix_int/Cargo.toml | 2 +- kanidmd/daemon/Cargo.toml | 2 +- kanidmd/idm/Cargo.toml | 2 +- kanidmd/score/Cargo.toml | 2 +- orca/Cargo.toml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1ab024f1d..bdd54de76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4166,9 +4166,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.20.1" +version = "1.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" +checksum = "89797afd69d206ccd11fb0ea560a44bbb87731d020670e79416d442919257d42" dependencies = [ "autocfg", "bytes", diff --git a/kanidm_client/Cargo.toml b/kanidm_client/Cargo.toml index 03db0c21b..104a35474 100644 --- a/kanidm_client/Cargo.toml +++ b/kanidm_client/Cargo.toml @@ -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" } serde = { version = "^1.0.142", features = ["derive"] } 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" uuid = { version = "^1.1.2", features = ["serde", "v4"] } url = { version = "^2.2.2", features = ["serde"] } diff --git a/kanidm_tools/Cargo.toml b/kanidm_tools/Cargo.toml index 9ffd21c47..2e71a4d1d 100644 --- a/kanidm_tools/Cargo.toml +++ b/kanidm_tools/Cargo.toml @@ -44,7 +44,7 @@ shellexpand = "^2.1.2" time = { version = "=0.2.27", features = ["serde", "std"] } tracing = "^0.1.35" 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"] } uuid = "^1.1.2" webauthn-authenticator-rs = { version = "0.4.5", features = ["u2fhid"] } diff --git a/kanidm_unix_int/Cargo.toml b/kanidm_unix_int/Cargo.toml index d07481af7..630848e7b 100644 --- a/kanidm_unix_int/Cargo.toml +++ b/kanidm_unix_int/Cargo.toml @@ -52,7 +52,7 @@ sketching = { path = "../sketching" } toml = "^0.5.9" 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"] } futures = "^0.3.21" diff --git a/kanidmd/daemon/Cargo.toml b/kanidmd/daemon/Cargo.toml index 4f325d1cd..464616a5d 100644 --- a/kanidmd/daemon/Cargo.toml +++ b/kanidmd/daemon/Cargo.toml @@ -24,7 +24,7 @@ sketching = { path = "../../sketching" } clap = { version = "^3.2", features = ["derive", "env"] } 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" [target.'cfg(target_family = "windows")'.dependencies] diff --git a/kanidmd/idm/Cargo.toml b/kanidmd/idm/Cargo.toml index be7c92862..def60c89c 100644 --- a/kanidmd/idm/Cargo.toml +++ b/kanidmd/idm/Cargo.toml @@ -50,7 +50,7 @@ smolset = "^1.3.1" sshkeys = "^0.3.1" tide = "^0.16.0" 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"] } toml = "^0.5.9" touch = "^0.0.1" diff --git a/kanidmd/score/Cargo.toml b/kanidmd/score/Cargo.toml index f9c52184f..d1e2609c3 100644 --- a/kanidmd/score/Cargo.toml +++ b/kanidmd/score/Cargo.toml @@ -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 tide-compress = { version = "0.10.6", default-features = false, features = [ "deflate", "gzip", "regex-check" ] } 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-util = { version = "^0.7.3", features = ["codec"] } tracing = { version = "^0.1.35", features = ["attributes"] } diff --git a/orca/Cargo.toml b/orca/Cargo.toml index 98a4cff67..1ef8e92d4 100644 --- a/orca/Cargo.toml +++ b/orca/Cargo.toml @@ -28,7 +28,7 @@ openssl = "^0.10.41" rand = "^0.8.5" serde = { version = "^1.0.142", features = ["derive"] } 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-util = { version = "^0.7.3", features = ["codec"] } toml = "^0.5.9"