From d9e61d6b716c2c1de378e6ceb8681c5e654ba345 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 15:34:53 +0000 Subject: [PATCH] chore(deps): bump uuid from 1.6.1 to 1.7.0 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.6.1 to 1.7.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.6.1...1.7.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- apiserver/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 48cca7d..6066b53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3314,9 +3314,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.6.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" +checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" dependencies = [ "getrandom", "rand", @@ -3326,9 +3326,9 @@ dependencies = [ [[package]] name = "uuid-macro-internal" -version = "1.6.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f49e7f3f3db8040a100710a11932239fd30697115e2ba4107080d8252939845e" +checksum = "7abb14ae1a50dad63eaa768a458ef43d298cd1bd44951677bd10b732a9ba2a2d" dependencies = [ "proc-macro2", "quote", diff --git a/apiserver/Cargo.toml b/apiserver/Cargo.toml index 83ac24e..f70f545 100644 --- a/apiserver/Cargo.toml +++ b/apiserver/Cargo.toml @@ -36,6 +36,6 @@ tracing.workspace = true tracing-subscriber.workspace = true utoipa = { version = "4.1.0", features = ["axum_extras", "uuid", "chrono"] } utoipa-swagger-ui = { version = "6.0.0", features = ["axum"] } -uuid = { version = "1.6.1", features = ["serde", "v4", "fast-rng", "macro-diagnostics"] } +uuid = { version = "1.7.0", features = ["serde", "v4", "fast-rng", "macro-diagnostics"] } url.workspace = true chrono = "0.4.31"