From 2b91104b1f20bb08a465356a51cb9ca2f35acabc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 May 2022 21:29:30 +0000 Subject: [PATCH] Update uuid requirement from 0.8 to 1.1 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.1.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..aaeff56 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.1", features = ["v4"] } dyn-clone = "1" tokio-stream = "0.1"