diff --git a/Cargo.lock b/Cargo.lock index 54fed49eb..8a438c086 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3878,9 +3878,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.18.2" +version = "1.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395" +checksum = "95eec79ea28c00a365f539f1961e9278fbcaf81c0ff6aaf0e93c181352446948" dependencies = [ "bytes", "libc", diff --git a/kanidm_client/Cargo.toml b/kanidm_client/Cargo.toml index 50847d7d5..9f989b08f 100644 --- a/kanidm_client/Cargo.toml +++ b/kanidm_client/Cargo.toml @@ -20,5 +20,5 @@ toml = "^0.5.9" uuid = { version = "^1.1.0", features = ["serde", "v4"] } url = { version = "^2.2.2", features = ["serde"] } webauthn-rs = "^0.3.2" -tokio = { version = "^1.18.0", features = ["rt", "net", "time", "macros", "sync", "signal"] } +tokio = { version = "^1.19.1", features = ["rt", "net", "time", "macros", "sync", "signal"] } diff --git a/kanidm_tools/Cargo.toml b/kanidm_tools/Cargo.toml index adedfc727..d8c2ee428 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.18.0", features = ["rt", "macros"] } +tokio = { version = "^1.19.1", 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 cf0beacec..888af42c9 100644 --- a/kanidm_unix_int/Cargo.toml +++ b/kanidm_unix_int/Cargo.toml @@ -52,7 +52,7 @@ tracing-subscriber = "^0.3.11" toml = "^0.5.9" rpassword = "^6.0.1" -tokio = { version = "^1.18.0", features = ["rt", "macros", "sync", "time", "net", "io-util"] } +tokio = { version = "^1.19.1", features = ["rt", "macros", "sync", "time", "net", "io-util"] } tokio-util = { version = "^0.7.2", features = ["codec"] } futures = "^0.3.21" diff --git a/kanidmd/daemon/Cargo.toml b/kanidmd/daemon/Cargo.toml index a83147405..a9f2ed0d7 100644 --- a/kanidmd/daemon/Cargo.toml +++ b/kanidmd/daemon/Cargo.toml @@ -22,7 +22,7 @@ score = { path = "../score" } structopt = { version = "^0.3.26", default-features = false } users = "^0.11.0" serde = { version = "^1.0.137", features = ["derive"] } -tokio = { version = "^1.18.0", features = ["rt-multi-thread", "macros", "signal"] } +tokio = { version = "^1.19.1", features = ["rt-multi-thread", "macros", "signal"] } toml = "0.5.9" [target.'cfg(not(target_family = "windows"))'.dependencies] diff --git a/kanidmd/idm/Cargo.toml b/kanidmd/idm/Cargo.toml index dfd2235fc..5c04df4ca 100644 --- a/kanidmd/idm/Cargo.toml +++ b/kanidmd/idm/Cargo.toml @@ -40,7 +40,7 @@ lazy_static = "^1.4.0" futures = "^0.3.21" futures-util = "^0.3.21" -tokio = { version = "^1.18.0", features = ["net", "sync", "time"] } +tokio = { version = "^1.19.1", features = ["net", "sync", "time"] } tokio-util = { version = "^0.7.2", features = ["codec"] } openssl = "^0.10.38" diff --git a/kanidmd/score/Cargo.toml b/kanidmd/score/Cargo.toml index 1a6c0c99a..20ddb4ad5 100644 --- a/kanidmd/score/Cargo.toml +++ b/kanidmd/score/Cargo.toml @@ -23,7 +23,7 @@ tide = "^0.16.0" tide-openssl = "^0.1.1" futures-util = "^0.3.21" -tokio = { version = "^1.18.0", features = ["net", "sync", "io-util", "macros"] } +tokio = { version = "^1.19.1", features = ["net", "sync", "io-util", "macros"] } tokio-util = { version = "^0.7.2", features = ["codec"] } tokio-openssl = "^0.6.3" openssl = "^0.10.38" diff --git a/orca/Cargo.toml b/orca/Cargo.toml index 0ad2910a6..ea3561574 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.18.0", features = ["rt-multi-thread"] } +tokio = { version = "^1.19.1", features = ["rt-multi-thread"] } tokio-util = { version = "^0.7.2", features = ["codec"] } tokio-openssl = "^0.6.3" futures-util = { version = "^0.3.21", features = ["sink"] }