mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Bump tokio from 1.18.2 to 1.19.1 (#812)
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.18.2 to 1.19.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.18.2...tokio-1.19.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... 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:
parent
b97d13d284
commit
032c324295
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -3878,9 +3878,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio"
|
name = "tokio"
|
||||||
version = "1.18.2"
|
version = "1.19.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395"
|
checksum = "95eec79ea28c00a365f539f1961e9278fbcaf81c0ff6aaf0e93c181352446948"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytes",
|
"bytes",
|
||||||
"libc",
|
"libc",
|
||||||
|
|
|
@ -20,5 +20,5 @@ toml = "^0.5.9"
|
||||||
uuid = { version = "^1.1.0", features = ["serde", "v4"] }
|
uuid = { version = "^1.1.0", features = ["serde", "v4"] }
|
||||||
url = { version = "^2.2.2", features = ["serde"] }
|
url = { version = "^2.2.2", features = ["serde"] }
|
||||||
webauthn-rs = "^0.3.2"
|
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"] }
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ zxcvbn = "^2.2.1"
|
||||||
dialoguer = "^0.10.1"
|
dialoguer = "^0.10.1"
|
||||||
|
|
||||||
webauthn-authenticator-rs = "^0.3.0-alpha.12"
|
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"] }
|
url = { version = "^2.2.2", features = ["serde"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
|
|
|
@ -52,7 +52,7 @@ tracing-subscriber = "^0.3.11"
|
||||||
|
|
||||||
toml = "^0.5.9"
|
toml = "^0.5.9"
|
||||||
rpassword = "^6.0.1"
|
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"] }
|
tokio-util = { version = "^0.7.2", features = ["codec"] }
|
||||||
|
|
||||||
futures = "^0.3.21"
|
futures = "^0.3.21"
|
||||||
|
|
|
@ -22,7 +22,7 @@ score = { path = "../score" }
|
||||||
structopt = { version = "^0.3.26", default-features = false }
|
structopt = { version = "^0.3.26", default-features = false }
|
||||||
users = "^0.11.0"
|
users = "^0.11.0"
|
||||||
serde = { version = "^1.0.137", features = ["derive"] }
|
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"
|
toml = "0.5.9"
|
||||||
|
|
||||||
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
||||||
|
|
|
@ -40,7 +40,7 @@ lazy_static = "^1.4.0"
|
||||||
|
|
||||||
futures = "^0.3.21"
|
futures = "^0.3.21"
|
||||||
futures-util = "^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"] }
|
tokio-util = { version = "^0.7.2", features = ["codec"] }
|
||||||
openssl = "^0.10.38"
|
openssl = "^0.10.38"
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ tide = "^0.16.0"
|
||||||
tide-openssl = "^0.1.1"
|
tide-openssl = "^0.1.1"
|
||||||
|
|
||||||
futures-util = "^0.3.21"
|
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-util = { version = "^0.7.2", features = ["codec"] }
|
||||||
tokio-openssl = "^0.6.3"
|
tokio-openssl = "^0.6.3"
|
||||||
openssl = "^0.10.38"
|
openssl = "^0.10.38"
|
||||||
|
|
|
@ -32,7 +32,7 @@ toml = "^0.5.9"
|
||||||
kanidm_proto = { path = "../kanidm_proto" }
|
kanidm_proto = { path = "../kanidm_proto" }
|
||||||
kanidm_client = { path = "../kanidm_client" }
|
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-util = { version = "^0.7.2", features = ["codec"] }
|
||||||
tokio-openssl = "^0.6.3"
|
tokio-openssl = "^0.6.3"
|
||||||
futures-util = { version = "^0.3.21", features = ["sink"] }
|
futures-util = { version = "^0.3.21", features = ["sink"] }
|
||||||
|
|
Loading…
Reference in a new issue