From 76ce7e06897641eb769a6bf92fc50f891b6acb11 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 14:01:58 +0000 Subject: [PATCH] chore: Bump uuid from 1.3.0 to 1.4.1 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.3.0 to 1.4.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.3.0...1.4.1) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 +++++----- backend/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5fc0090c9..e7ebc2ea5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1896,7 +1896,7 @@ dependencies = [ "sqlx", "sqlxmq", "tokio", - "uuid 1.3.0", + "uuid 1.4.1", "warp", ] @@ -2392,7 +2392,7 @@ dependencies = [ "thiserror", "tokio-stream", "url", - "uuid 1.3.0", + "uuid 1.4.1", "whoami", ] @@ -2445,7 +2445,7 @@ dependencies = [ "sqlx", "sqlxmq_macros", "tokio", - "uuid 1.3.0", + "uuid 1.4.1", ] [[package]] @@ -2875,9 +2875,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.3.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" +checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" dependencies = [ "getrandom", ] diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 699bc0241..6acc46852 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -19,5 +19,5 @@ serde_json = "1.0" sqlx = { version = "0.6", features = [ "runtime-tokio-native-tls", "postgres", "uuid", "chrono", "json", "offline", "migrate" ] } sqlxmq = "0.4" tokio = { version = "1.28", features = ["macros"] } -uuid = "1.3" +uuid = "1.4" warp = "0.3"