From 5395f2fb6bb51e2c7fa13ed2d0faa35da706ef02 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 14:16:51 +0000 Subject: [PATCH] fix(deps): update rust crate uuid to 1.5 --- Cargo.lock | 4 ++-- server/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dabcbc73..8a40c577 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2489,9 +2489,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.3.3" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" +checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" dependencies = [ "getrandom", "serde", diff --git a/server/Cargo.toml b/server/Cargo.toml index 630cecf7..192c42fc 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -46,4 +46,4 @@ toml = "0.7" tonic = {version = "0.9", features = ["tls"]} tower-http = { version = "0.4.0", features = ["cors"] } url = "2.3.1" -uuid = {version = "1.3", default-features = false, features = ["serde", "v4"]} +uuid = {version = "1.5", default-features = false, features = ["serde", "v4"]}