From 1c803745c030b28a7048b503c31d73eebb406ec9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 11:32:46 +0000 Subject: [PATCH] Update uuid requirement from 0.8 to 1.2 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.1...1.2.1) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- simag_core/Cargo.toml | 2 +- simag_networking/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/simag_core/Cargo.toml b/simag_core/Cargo.toml index f2a977f..4d0ea34 100644 --- a/simag_core/Cargo.toml +++ b/simag_core/Cargo.toml @@ -21,7 +21,7 @@ once_cell = "1.7" parking_lot = "0.11" rayon = "1.5" serde = { version = "1.0", optional = true, features = ["derive", "rc"] } -uuid = { version = "0.8", features = ["v4"]} +uuid = { version = "1.2", features = ["v4"]} [dependencies.chrono] version = "0.4" diff --git a/simag_networking/Cargo.toml b/simag_networking/Cargo.toml index b94f2b4..08577d2 100644 --- a/simag_networking/Cargo.toml +++ b/simag_networking/Cargo.toml @@ -34,7 +34,7 @@ typetag = "0.1" tokio = { version = "1.8", features = ["macros", "rt-multi-thread", "sync", "time"] } tokio-util = { version = "0.6", features = ["codec"] } unsigned-varint = { version = "0.7", features = ["codec"] } -uuid = { version = "0.8.1", features = ["v5", "serde"]} +uuid = { version = "1.2.1", features = ["v5", "serde"]} # internal: simag_core = { path = "../simag_core" }