fix(deps): update rust crate uuid to 1.1.1

This commit is contained in:
Renovate Bot 2022-06-01 02:24:50 +00:00 committed by renovate[bot]
parent 48db732c1f
commit 9d63990814
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@ -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",

View File

@ -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"] }

View File

@ -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"] }