mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
Bump uuid from 1.1.0 to 1.1.1 (#813)
Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.1.0 to 1.1.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.1.0...1.1.1) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-patch ... 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
032c324295
commit
ed32e10547
16
Cargo.lock
generated
16
Cargo.lock
generated
|
@ -639,7 +639,7 @@ dependencies = [
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"tracing",
|
"tracing",
|
||||||
"url",
|
"url",
|
||||||
"uuid 1.1.0",
|
"uuid 1.1.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -2002,7 +2002,7 @@ dependencies = [
|
||||||
"tracing-subscriber",
|
"tracing-subscriber",
|
||||||
"url",
|
"url",
|
||||||
"users",
|
"users",
|
||||||
"uuid 1.1.0",
|
"uuid 1.1.1",
|
||||||
"validator",
|
"validator",
|
||||||
"webauthn-authenticator-rs",
|
"webauthn-authenticator-rs",
|
||||||
"webauthn-rs",
|
"webauthn-rs",
|
||||||
|
@ -2021,7 +2021,7 @@ dependencies = [
|
||||||
"toml",
|
"toml",
|
||||||
"tracing",
|
"tracing",
|
||||||
"url",
|
"url",
|
||||||
"uuid 1.1.0",
|
"uuid 1.1.1",
|
||||||
"webauthn-rs",
|
"webauthn-rs",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -2034,7 +2034,7 @@ dependencies = [
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"time 0.2.27",
|
"time 0.2.27",
|
||||||
"url",
|
"url",
|
||||||
"uuid 1.1.0",
|
"uuid 1.1.1",
|
||||||
"webauthn-rs",
|
"webauthn-rs",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -2566,7 +2566,7 @@ dependencies = [
|
||||||
"toml",
|
"toml",
|
||||||
"tracing",
|
"tracing",
|
||||||
"tracing-subscriber",
|
"tracing-subscriber",
|
||||||
"uuid 1.1.0",
|
"uuid 1.1.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -3241,7 +3241,7 @@ dependencies = [
|
||||||
"tracing",
|
"tracing",
|
||||||
"tracing-subscriber",
|
"tracing-subscriber",
|
||||||
"url",
|
"url",
|
||||||
"uuid 1.1.0",
|
"uuid 1.1.1",
|
||||||
"webauthn-authenticator-rs",
|
"webauthn-authenticator-rs",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -4124,9 +4124,9 @@ checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uuid"
|
name = "uuid"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "93bbc61e655a4833cf400d0d15bf3649313422fa7572886ad6dab16d79886365"
|
checksum = "c6d5d669b51467dcf7b2f1a796ce0f955f05f01cafda6c19d6e95f730df29238"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"getrandom 0.2.6",
|
"getrandom 0.2.6",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
|
@ -17,7 +17,7 @@ kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha.8" }
|
||||||
serde = { version = "^1.0.137", features = ["derive"] }
|
serde = { version = "^1.0.137", features = ["derive"] }
|
||||||
serde_json = "^1.0.80"
|
serde_json = "^1.0.80"
|
||||||
toml = "^0.5.9"
|
toml = "^0.5.9"
|
||||||
uuid = { version = "^1.1.0", features = ["serde", "v4"] }
|
uuid = { version = "^1.1.1", 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.19.1", features = ["rt", "net", "time", "macros", "sync", "signal"] }
|
tokio = { version = "^1.19.1", features = ["rt", "net", "time", "macros", "sync", "signal"] }
|
||||||
|
|
|
@ -13,7 +13,7 @@ repository = "https://github.com/kanidm/kanidm/"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "^1.0.137", features = ["derive"] }
|
serde = { version = "^1.0.137", features = ["derive"] }
|
||||||
serde_json = "^1.0.80"
|
serde_json = "^1.0.80"
|
||||||
uuid = { version = "^1.1.0", features = ["serde"] }
|
uuid = { version = "^1.1.1", features = ["serde"] }
|
||||||
base32 = "^0.4.0"
|
base32 = "^0.4.0"
|
||||||
webauthn-rs = { version = "^0.3.2", default-features = false, features = ["wasm"] }
|
webauthn-rs = { version = "^0.3.2", default-features = false, features = ["wasm"] }
|
||||||
# Can not upgrade due to breaking timezone apis.
|
# Can not upgrade due to breaking timezone apis.
|
||||||
|
|
|
@ -44,7 +44,7 @@ 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"
|
||||||
|
|
||||||
uuid = { version = "^1.1.0", features = ["serde", "v4" ] }
|
uuid = { version = "^1.1.1", features = ["serde", "v4" ] }
|
||||||
compiled-uuid = "0.1.2"
|
compiled-uuid = "0.1.2"
|
||||||
serde = { version = "^1.0.137", features = ["derive"] }
|
serde = { version = "^1.0.137", features = ["derive"] }
|
||||||
serde_cbor = "^0.11.2"
|
serde_cbor = "^0.11.2"
|
||||||
|
|
|
@ -17,7 +17,7 @@ kanidm = { path = "../idm" }
|
||||||
kanidm_proto = { path = "../../kanidm_proto" }
|
kanidm_proto = { path = "../../kanidm_proto" }
|
||||||
libc = "^0.2.126"
|
libc = "^0.2.126"
|
||||||
|
|
||||||
uuid = { version = "^1.1.0", features = ["serde", "v4" ] }
|
uuid = { version = "^1.1.1", features = ["serde", "v4" ] }
|
||||||
|
|
||||||
tide = "^0.16.0"
|
tide = "^0.16.0"
|
||||||
tide-openssl = "^0.1.1"
|
tide-openssl = "^0.1.1"
|
||||||
|
|
|
@ -21,7 +21,7 @@ tracing-subscriber = "^0.3.11"
|
||||||
|
|
||||||
structopt = { version = "^0.3.26", default-features = false }
|
structopt = { version = "^0.3.26", default-features = false }
|
||||||
|
|
||||||
uuid = { version = "^1.1.0", features = ["serde", "v4" ] }
|
uuid = { version = "^1.1.1", features = ["serde", "v4" ] }
|
||||||
csv = "1.1.6"
|
csv = "1.1.6"
|
||||||
serde = { version = "^1.0.137", features = ["derive"] }
|
serde = { version = "^1.0.137", features = ["derive"] }
|
||||||
serde_json = "^1.0.80"
|
serde_json = "^1.0.80"
|
||||||
|
|
Loading…
Reference in a new issue