diff --git a/Cargo.lock b/Cargo.lock index 5953654..04e40de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1844,9 +1844,9 @@ checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1" [[package]] name = "uuid" -version = "1.1.1" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6d5d669b51467dcf7b2f1a796ce0f955f05f01cafda6c19d6e95f730df29238" +checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" dependencies = [ "getrandom", "sha1_smol", diff --git a/database/Cargo.toml b/database/Cargo.toml index 2775ba4..d625237 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -9,7 +9,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.1", features = ["v5"] } +uuid = { version = "1.1.2", features = ["v5"] } homedisk-types = { path = "../types", features = ["database"] } [dev-dependencies] diff --git a/types/Cargo.toml b/types/Cargo.toml index 51a7215..c17daf4 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -9,7 +9,7 @@ database = ["crypto-utils", "hex", "sqlx"] [dependencies] thiserror = "1.0.31" -uuid = "1.1.1" +uuid = "1.1.2" anyhow = "1.0.57" serde = { version = "1.0.137", features = ["derive"] } zeroize = { version = "1.5.5", features = ["derive"] }