From 1171cf6f390d8ffe216dd853f473226c9aace237 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Feb 2023 10:08:25 +0000 Subject: [PATCH] Update uuid requirement from 0.8 to 1.3 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.8.0...1.3.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- dynomite/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynomite/Cargo.toml b/dynomite/Cargo.toml index c6acd57..87169fc 100644 --- a/dynomite/Cargo.toml +++ b/dynomite/Cargo.toml @@ -27,7 +27,7 @@ log = "0.4" # `default` build configuration - see the [features] below. rusoto_core = { version = "0.47", optional = true, default_features = false } rusoto_dynamodb = { version = "0.47", optional = true, default_features = false } -uuid = { version = "0.8", features = ["v4"], optional = true } +uuid = { version = "1.3", features = ["v4"], optional = true } chrono = { version = "0.4", optional = true } [dev-dependencies]