From 61cd099c19a905ba75f8e37db57e0d59be2ef3fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 15:21:29 +0000 Subject: [PATCH] Bump uuid from 1.8.0 to 1.9.1 in /protocol Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.8.0 to 1.9.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.8.0...1.9.1) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- protocol/Cargo.lock | 4 ++-- protocol/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/protocol/Cargo.lock b/protocol/Cargo.lock index 55a79ede..23221c30 100644 --- a/protocol/Cargo.lock +++ b/protocol/Cargo.lock @@ -1551,9 +1551,9 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" [[package]] name = "uuid" -version = "1.8.0" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" dependencies = [ "getrandom", "serde", diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 3e024deb..0639caa8 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] chrono = { version = "0.4", features = ["serde"] } -uuid = { version = "1.8.0", features = ["v4", "serde"] } +uuid = { version = "1.9.1", features = ["v4", "serde"] } sqlx = { version = "0.7", features = ["macros", "chrono", "uuid"] } serde = "1.0" serde_with = { version = "3.7", features = ["chrono_0_4"] }