From 40b29e14ca082ff85c3a76b1bb1df1a43b7b94da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 May 2022 22:03:37 +1000 Subject: [PATCH] Bump uuid from 1.0.0 to 1.1.0 (#784) Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.0.0 to 1.1.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.0.0...1.1.0) --- updated-dependencies: - dependency-name: uuid 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 | 16 ++++++++-------- kanidm_client/Cargo.toml | 2 +- kanidm_proto/Cargo.toml | 2 +- kanidmd/idm/Cargo.toml | 2 +- kanidmd/score/Cargo.toml | 2 +- orca/Cargo.toml | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 695aa49bc..e7a1f15ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -628,7 +628,7 @@ dependencies = [ "serde_json", "tracing", "url", - "uuid 1.0.0", + "uuid 1.1.0", ] [[package]] @@ -1991,7 +1991,7 @@ dependencies = [ "tracing-subscriber", "url", "users", - "uuid 1.0.0", + "uuid 1.1.0", "validator", "webauthn-authenticator-rs", "webauthn-rs", @@ -2010,7 +2010,7 @@ dependencies = [ "toml", "tracing", "url", - "uuid 1.0.0", + "uuid 1.1.0", "webauthn-rs", ] @@ -2023,7 +2023,7 @@ dependencies = [ "serde_json", "time 0.2.27", "url", - "uuid 1.0.0", + "uuid 1.1.0", "webauthn-rs", ] @@ -2551,7 +2551,7 @@ dependencies = [ "toml", "tracing", "tracing-subscriber", - "uuid 1.0.0", + "uuid 1.1.0", ] [[package]] @@ -3226,7 +3226,7 @@ dependencies = [ "tracing", "tracing-subscriber", "url", - "uuid 1.0.0", + "uuid 1.1.0", "webauthn-authenticator-rs", ] @@ -4109,9 +4109,9 @@ checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" [[package]] name = "uuid" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cfcd319456c4d6ea10087ed423473267e1a071f3bc0aa89f80d60997843c6f0" +checksum = "93bbc61e655a4833cf400d0d15bf3649313422fa7572886ad6dab16d79886365" dependencies = [ "getrandom 0.2.6", "serde", diff --git a/kanidm_client/Cargo.toml b/kanidm_client/Cargo.toml index e7ad58b28..50847d7d5 100644 --- a/kanidm_client/Cargo.toml +++ b/kanidm_client/Cargo.toml @@ -17,7 +17,7 @@ kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha.8" } serde = { version = "^1.0.137", features = ["derive"] } serde_json = "^1.0.80" toml = "^0.5.9" -uuid = { version = "^1.0.0", features = ["serde", "v4"] } +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"] } diff --git a/kanidm_proto/Cargo.toml b/kanidm_proto/Cargo.toml index 139daf75c..5d206c1c1 100644 --- a/kanidm_proto/Cargo.toml +++ b/kanidm_proto/Cargo.toml @@ -13,7 +13,7 @@ repository = "https://github.com/kanidm/kanidm/" [dependencies] serde = { version = "^1.0.137", features = ["derive"] } serde_json = "^1.0.80" -uuid = { version = "^1.0.0", features = ["serde"] } +uuid = { version = "^1.1.0", features = ["serde"] } base32 = "^0.4.0" webauthn-rs = { version = "^0.3.2", default-features = false, features = ["wasm"] } # Can not upgrade due to breaking timezone apis. diff --git a/kanidmd/idm/Cargo.toml b/kanidmd/idm/Cargo.toml index 0908c477f..dfd2235fc 100644 --- a/kanidmd/idm/Cargo.toml +++ b/kanidmd/idm/Cargo.toml @@ -44,7 +44,7 @@ tokio = { version = "^1.18.0", features = ["net", "sync", "time"] } tokio-util = { version = "^0.7.2", features = ["codec"] } openssl = "^0.10.38" -uuid = { version = "^1.0.0", features = ["serde", "v4" ] } +uuid = { version = "^1.1.0", features = ["serde", "v4" ] } compiled-uuid = "0.1.2" serde = { version = "^1.0.137", features = ["derive"] } serde_cbor = "^0.11.2" diff --git a/kanidmd/score/Cargo.toml b/kanidmd/score/Cargo.toml index 66ad571bf..1a6c0c99a 100644 --- a/kanidmd/score/Cargo.toml +++ b/kanidmd/score/Cargo.toml @@ -17,7 +17,7 @@ kanidm = { path = "../idm" } kanidm_proto = { path = "../../kanidm_proto" } libc = "^0.2.126" -uuid = { version = "^1.0.0", features = ["serde", "v4" ] } +uuid = { version = "^1.1.0", features = ["serde", "v4" ] } tide = "^0.16.0" tide-openssl = "^0.1.1" diff --git a/orca/Cargo.toml b/orca/Cargo.toml index 180bceb3b..645a00b44 100644 --- a/orca/Cargo.toml +++ b/orca/Cargo.toml @@ -21,7 +21,7 @@ tracing-subscriber = "^0.3.11" structopt = { version = "^0.3.26", default-features = false } -uuid = { version = "^1.0.0", features = ["serde", "v4" ] } +uuid = { version = "^1.1.0", features = ["serde", "v4" ] } csv = "1.1.6" serde = { version = "^1.0.137", features = ["derive"] } serde_json = "^1.0.80"