From 9d6399081412720f251dac049ae79844685a79b1 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 1 Jun 2022 02:24:50 +0000 Subject: [PATCH] fix(deps): update rust crate uuid to 1.1.1 --- Cargo.lock | 4 ++-- database/Cargo.toml | 2 +- types/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1ea20cc..0d1aa28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1886,9 +1886,9 @@ checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" [[package]] name = "uuid" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93bbc61e655a4833cf400d0d15bf3649313422fa7572886ad6dab16d79886365" +checksum = "c6d5d669b51467dcf7b2f1a796ce0f955f05f01cafda6c19d6e95f730df29238" dependencies = [ "getrandom", "sha1_smol", diff --git a/database/Cargo.toml b/database/Cargo.toml index 22ded8c..001da75 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -8,7 +8,7 @@ log = "0.4.17" futures-util = "0.3.21" serde = { version = "1.0.137", features = ["derive"] } sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "sqlite"] } -uuid = { version = "1.1.0", features = ["v5"] } +uuid = { version = "1.1.1", features = ["v5"] } rust_utilities = { version = "0.2.0", features = ["sha"] } homedisk-types = { path = "../types", features = ["database"] } diff --git a/types/Cargo.toml b/types/Cargo.toml index bf54304..1f9a430 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -9,7 +9,7 @@ database = ["rust_utilities", "sqlx"] [dependencies] thiserror = "1.0.31" -uuid = "1.1.0" +uuid = "1.1.1" anyhow = "1.0.57" serde = { version = "1.0.137", features = ["derive"] } zeroize = { version = "1.5.5", features = ["derive"] }