From 49fe0249b0e0e059e821b412d3d3fab17d9430cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Jul 2022 20:04:52 +1000 Subject: [PATCH] Bump tokio from 1.19.2 to 1.20.0 (#923) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.19.2 to 1.20.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.19.2...tokio-1.20.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 5 +++-- 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, 10 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7916fa602..fea98c54a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3942,10 +3942,11 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.19.2" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" +checksum = "57aec3cfa4c296db7255446efb4928a6be304b431a806216105542a67b6ca82e" dependencies = [ + "autocfg", "bytes", "libc", "memchr", diff --git a/kanidm_client/Cargo.toml b/kanidm_client/Cargo.toml index ba241ba76..ba5c2f87d 100644 --- a/kanidm_client/Cargo.toml +++ b/kanidm_client/Cargo.toml @@ -20,5 +20,5 @@ toml = "^0.5.9" uuid = { version = "^1.1.2", features = ["serde", "v4"] } url = { version = "^2.2.2", features = ["serde"] } webauthn-rs = "^0.3.2" -tokio = { version = "^1.19.1", features = ["rt", "net", "time", "macros", "sync", "signal"] } +tokio = { version = "^1.20.0", features = ["rt", "net", "time", "macros", "sync", "signal"] } diff --git a/kanidm_tools/Cargo.toml b/kanidm_tools/Cargo.toml index 5e3a01ca3..436c4ad06 100644 --- a/kanidm_tools/Cargo.toml +++ b/kanidm_tools/Cargo.toml @@ -49,7 +49,7 @@ zxcvbn = "^2.2.1" dialoguer = "^0.10.1" webauthn-authenticator-rs = "^0.3.0-alpha.12" -tokio = { version = "^1.19.1", features = ["rt", "macros"] } +tokio = { version = "^1.20.0", features = ["rt", "macros"] } url = { version = "^2.2.2", features = ["serde"] } [build-dependencies] diff --git a/kanidm_unix_int/Cargo.toml b/kanidm_unix_int/Cargo.toml index 17dfcf937..5621d8267 100644 --- a/kanidm_unix_int/Cargo.toml +++ b/kanidm_unix_int/Cargo.toml @@ -52,7 +52,7 @@ tracing-subscriber = "^0.3.14" toml = "^0.5.9" rpassword = "^7.0.0" -tokio = { version = "^1.19.1", features = ["rt", "macros", "sync", "time", "net", "io-util"] } +tokio = { version = "^1.20.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 70be2e44e..2e6ba95c4 100644 --- a/kanidmd/daemon/Cargo.toml +++ b/kanidmd/daemon/Cargo.toml @@ -22,7 +22,7 @@ kanidm_proto = { path = "../../kanidm_proto" } score = { path = "../score" } clap = { version = "^3.2", features = ["derive", "env"] } serde = { version = "^1.0.139", features = ["derive"] } -tokio = { version = "^1.19.1", features = ["rt-multi-thread", "macros", "signal"] } +tokio = { version = "^1.20.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 3886706bb..71554407b 100644 --- a/kanidmd/idm/Cargo.toml +++ b/kanidmd/idm/Cargo.toml @@ -49,7 +49,7 @@ smolset = "^1.3.1" sshkeys = "^0.3.1" tide = "^0.16.0" time = { version = "=0.2.27", features = ["serde", "std"] } -tokio = { version = "^1.19.1", features = ["net", "sync", "time"] } +tokio = { version = "^1.20.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 9c0d4f4fc..d281088c5 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.4", default-features = false, features = [ "deflate", "gzip", "regex-check" ] } tide-openssl = "^0.1.1" -tokio = { version = "^1.19.1", features = ["net", "sync", "io-util", "macros"] } +tokio = { version = "^1.20.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 f16455197..d8c1bb022 100644 --- a/orca/Cargo.toml +++ b/orca/Cargo.toml @@ -32,7 +32,7 @@ toml = "^0.5.9" kanidm_proto = { path = "../kanidm_proto" } kanidm_client = { path = "../kanidm_client" } -tokio = { version = "^1.19.1", features = ["rt-multi-thread"] } +tokio = { version = "^1.20.0", features = ["rt-multi-thread"] } tokio-util = { version = "^0.7.3", features = ["codec"] } tokio-openssl = "^0.6.3" futures-util = { version = "^0.3.21", features = ["sink"] }