From 58e4434e741e7ef67552c02ace07aa9e729dbaf4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 05:13:05 +0000 Subject: [PATCH] Update uuid requirement from 0.5 to 1.2 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.2.1) --- 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..c89d74a 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.2", 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