From 9500fc222290a53f9fcb44dba9ba2b596019dbc2 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Wed, 26 Oct 2022 09:58:03 +0000 Subject: [PATCH] fix(deps): update rust crate uuid to 1.2.1 --- Cargo.lock | 4 ++-- cibus_bin/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f5ea1e5..53194e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1872,9 +1872,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.1.2" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" +checksum = "feb41e78f93363bb2df8b0e86a2ca30eed7806ea16ea0c790d757cf93f79be83" dependencies = [ "getrandom", "rand", diff --git a/cibus_bin/Cargo.toml b/cibus_bin/Cargo.toml index 94ce0ce..417d532 100644 --- a/cibus_bin/Cargo.toml +++ b/cibus_bin/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" async-graphql = "4.0.6" axum = "0.5.13" tokio = {version="1.20.1", features=["full"]} -uuid = {version="1.1.2", features=["v4", "fast-rng"]} +uuid = {version="1.2.1", features=["v4", "fast-rng"]} sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "postgres", "migrate"] } anyhow = "1.0.60" dotenv = "0.15.0"