From 807e52ff069937f67eb4339af690f00fba0b7457 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Feb 2023 05:01:50 +0000 Subject: [PATCH] Update uuid requirement from 0.5 to 1.3 in /vault-api Updates the requirements on [uuid](https://github.com/uuid-rs/uuid) to permit the latest version. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/0.5.0...1.3.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- vault-api/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vault-api/Cargo.toml b/vault-api/Cargo.toml index 1de235f..be59047 100644 --- a/vault-api/Cargo.toml +++ b/vault-api/Cargo.toml @@ -33,7 +33,7 @@ serde_derive = "1.0" serde_ignored = {version = "0.0.4", optional = true} serde_json = {version = "1.0", optional = true} urlencoded = {version = "0.5", optional = true} -uuid = {version = "0.5", optional = true, features = ["serde", "v4"]} +uuid = {version = "1.3", optional = true, features = ["serde", "v4"]} # ToDo: this should be updated to point at the official crate once # https://github.com/RReverser/serde-xml-rs/pull/45 is accepted upstream