From 27811f37a85e5a532dfda5ffe23d88866b8b519e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Apr 2022 21:11:26 +0000 Subject: [PATCH] Update uuid requirement from 0.8 to 1.0 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.0.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5b7c26c..b529adc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,6 +16,6 @@ exclude = [ async-trait = "0.1" tokio = { version = "1", features = ["sync", "rt", "macros", "time"] } futures-util = { version = "0.3", default-features = false, features = ["alloc"] } -uuid = { version = "0.8", features = ["v4"] } +uuid = { version = "1.0", features = ["v4"] } dyn-clone = "1" tokio-stream = "0.1"