From 2472ae34d73c5b4c77052290fc5a428572944671 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 14:35:03 +0000 Subject: [PATCH] Bump uuid from 0.8.2 to 1.8.0 Bumps [uuid](https://github.com/uuid-rs/uuid) from 0.8.2 to 1.8.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/0.8.2...1.8.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 ++++++++-- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 76c8ff6..d1e9e40 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,7 +435,7 @@ dependencies = [ "regex", "serde", "sha2", - "uuid", + "uuid 1.8.0", "woothee", ] @@ -659,7 +659,7 @@ dependencies = [ "pq-sys", "r2d2", "serde_json", - "uuid", + "uuid 0.8.2", ] [[package]] @@ -2156,6 +2156,12 @@ name = "uuid" version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" + +[[package]] +name = "uuid" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" dependencies = [ "serde", ] diff --git a/Cargo.toml b/Cargo.toml index 67c9038..f190304 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ actix-cors = "0.4.1" diesel = { version="1.4.8", features = ["chrono", "postgres", "r2d2", "uuidv07", "serde_json"] } diesel_migrations = "1.4" chrono = { version = "0.4.19", features = ["time", "serde"] } -uuid = { version = "0.8", features = ["serde"] } +uuid = { version = "1.8", features = ["serde"] } dotenv = "0.15" serde = { version = "1.0", features = ["derive"] } bcrypt = "0.10"