mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
Bump tokio from 1.21.0 to 1.21.1 (#1046)
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.21.0 to 1.21.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.21.0...tokio-1.21.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... 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:
parent
70cfa5afc2
commit
3810c16758
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -4183,9 +4183,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio"
|
name = "tokio"
|
||||||
version = "1.21.0"
|
version = "1.21.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "89797afd69d206ccd11fb0ea560a44bbb87731d020670e79416d442919257d42"
|
checksum = "0020c875007ad96677dcc890298f4b942882c5d4eb7cc8f439fc3bf813dc9c95"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"autocfg",
|
"autocfg",
|
||||||
"bytes",
|
"bytes",
|
||||||
|
|
|
@ -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.21.0", features = ["rt", "net", "time", "macros", "sync", "signal"] }
|
tokio = { version = "^1.21.1", 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.3.1", features = ["serde"] }
|
url = { version = "^2.3.1", features = ["serde"] }
|
||||||
|
|
|
@ -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.21.0", features = ["rt", "macros"] }
|
tokio = { version = "^1.21.1", features = ["rt", "macros"] }
|
||||||
url = { version = "^2.3.1", features = ["serde"] }
|
url = { version = "^2.3.1", 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"] }
|
||||||
|
|
|
@ -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.21.0", features = ["rt", "macros", "sync", "time", "net", "io-util"] }
|
tokio = { version = "^1.21.1", features = ["rt", "macros", "sync", "time", "net", "io-util"] }
|
||||||
tokio-util = { version = "^0.7.4", features = ["codec"] }
|
tokio-util = { version = "^0.7.4", features = ["codec"] }
|
||||||
|
|
||||||
futures = "^0.3.21"
|
futures = "^0.3.21"
|
||||||
|
|
|
@ -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.21.0", features = ["rt-multi-thread", "macros", "signal"] }
|
tokio = { version = "^1.21.1", 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]
|
||||||
|
|
|
@ -49,7 +49,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.21.0", features = ["net", "sync", "time"] }
|
tokio = { version = "^1.21.1", features = ["net", "sync", "time"] }
|
||||||
tokio-util = { version = "^0.7.4", features = ["codec"] }
|
tokio-util = { version = "^0.7.4", features = ["codec"] }
|
||||||
toml = "^0.5.9"
|
toml = "^0.5.9"
|
||||||
touch = "^0.0.1"
|
touch = "^0.0.1"
|
||||||
|
|
|
@ -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.21.0", features = ["net", "sync", "io-util", "macros"] }
|
tokio = { version = "^1.21.1", features = ["net", "sync", "io-util", "macros"] }
|
||||||
tokio-openssl = "^0.6.3"
|
tokio-openssl = "^0.6.3"
|
||||||
tokio-util = { version = "^0.7.4", features = ["codec"] }
|
tokio-util = { version = "^0.7.4", features = ["codec"] }
|
||||||
tracing = { version = "^0.1.35", features = ["attributes"] }
|
tracing = { version = "^0.1.35", features = ["attributes"] }
|
||||||
|
|
|
@ -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.21.0", features = ["rt-multi-thread"] }
|
tokio = { version = "^1.21.1", features = ["rt-multi-thread"] }
|
||||||
tokio-openssl = "^0.6.3"
|
tokio-openssl = "^0.6.3"
|
||||||
tokio-util = { version = "^0.7.4", features = ["codec"] }
|
tokio-util = { version = "^0.7.4", features = ["codec"] }
|
||||||
toml = "^0.5.9"
|
toml = "^0.5.9"
|
||||||
|
|
Loading…
Reference in a new issue