From 21d8e0c01a4bcced65cd53286b7a05c317290200 Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Thu, 19 Oct 2023 00:11:39 +0000 Subject: [PATCH] Update Rust crate uuid to 1.5.0 --- rust/Cargo.lock | 4 ++-- rust/sea_battle_backend/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index fe19bdf..7d7946d 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2257,9 +2257,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" +checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" dependencies = [ "getrandom", ] diff --git a/rust/sea_battle_backend/Cargo.toml b/rust/sea_battle_backend/Cargo.toml index a45e14e..6ca44f3 100644 --- a/rust/sea_battle_backend/Cargo.toml +++ b/rust/sea_battle_backend/Cargo.toml @@ -22,7 +22,7 @@ actix-cors = "0.6.2" actix = "0.13.0" actix-web-actors = "4.1.0" actix-rt = "2.9.0" -uuid = { version = "1.4.1", features = ["v4"] } +uuid = { version = "1.5.0", features = ["v4"] } rand = "0.8.5" serde_with = "3.4.0" tokio = { version = "1", features = ["full"] }