diff --git a/database/Cargo.toml b/database/Cargo.toml index 0c06128..22ded8c 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.0.0", features = ["v5"] } +uuid = { version = "1.1.0", 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 5f704a1..bf54304 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -9,7 +9,7 @@ database = ["rust_utilities", "sqlx"] [dependencies] thiserror = "1.0.31" -uuid = "1.0.0" +uuid = "1.1.0" anyhow = "1.0.57" serde = { version = "1.0.137", features = ["derive"] } zeroize = { version = "1.5.5", features = ["derive"] }