From 7c104f14cbced7ce990c4643faf60da7a0746a98 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 23:45:05 +0000 Subject: [PATCH] fix(deps): update rust crate uuid to v1 --- Cargo.lock | 6 +----- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cbc70d1..62cc2fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -496,7 +496,7 @@ dependencies = [ "semver", "serde", "serde_json", - "uuid 0.8.2", + "uuid 1.4.1", ] [[package]] @@ -4080,10 +4080,6 @@ name = "uuid" version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" -dependencies = [ - "getrandom 0.2.10", - "serde", -] [[package]] name = "uuid" diff --git a/Cargo.toml b/Cargo.toml index 5ef6a0f..7308361 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ env_logger = "0.10.0" juniper = "0.15.11" log = "0.4.20" sea-orm = { version = "0.12", features = ["sqlx-postgres", "runtime-actix-rustls"] } -uuid = { version = "0.8", features = ["serde", "v4"] } +uuid = { version = "1.4", features = ["serde", "v4"] } entity = { path = "./entity" } dotenv = "0.15.0" juniper_actix = "0.4.0"