From 1b86fcbb82f64f02264c9c466863e96763370a91 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 May 2022 12:53:31 +0000 Subject: [PATCH] Bump uuid from 0.8.2 to 1.0.0 in /application Bumps [uuid](https://github.com/uuid-rs/uuid) from 0.8.2 to 1.0.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/0.8.2...1.0.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- application/Cargo.lock | 7 ++----- application/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/application/Cargo.lock b/application/Cargo.lock index e3dad3e0..d3e544a0 100644 --- a/application/Cargo.lock +++ b/application/Cargo.lock @@ -1206,7 +1206,7 @@ dependencies = [ "tokio-stream", "tokio-test", "toml", - "uuid 0.8.2", + "uuid 1.0.0", ] [[package]] @@ -2856,10 +2856,6 @@ name = "uuid" version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" -dependencies = [ - "getrandom", - "serde", -] [[package]] name = "uuid" @@ -2867,6 +2863,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8cfcd319456c4d6ea10087ed423473267e1a071f3bc0aa89f80d60997843c6f0" dependencies = [ + "getrandom", "serde", ] diff --git a/application/Cargo.toml b/application/Cargo.toml index 6fc5695b..3bbb97fa 100644 --- a/application/Cargo.toml +++ b/application/Cargo.toml @@ -60,7 +60,7 @@ tokio-test = "0.4.2" # Encode/decode TOML content/files toml = "0.5.9" # Implementation of Universally Unique Identifiers (Uuid) -uuid = { version = "0.8.2", features = ["v4", "serde"] } +uuid = { version = "1.0.0", features = ["v4", "serde"] } # [workspace]