diff --git a/Cargo.toml b/Cargo.toml index 169d928d..7778a00f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,7 +74,7 @@ rand = { version = "0.8", features = ["small_rng"] } rand_core = { version = "0.6", features = ["getrandom"] } rand_distr = "0.4" zeroize = { version = "1.7", features = ["derive"] } -getrandom = "0.2" +getrandom = "0.4" argon2 = "0.5" # Kernel interfaces diff --git a/clients/wraith-stream/src-tauri/Cargo.toml b/clients/wraith-stream/src-tauri/Cargo.toml index ddf14dee..15719bce 100644 --- a/clients/wraith-stream/src-tauri/Cargo.toml +++ b/clients/wraith-stream/src-tauri/Cargo.toml @@ -43,7 +43,7 @@ rusqlite = { version = "0.38", features = ["bundled"] } blake3 = "1" chacha20poly1305 = "0.10" rand = "0.8" -getrandom = "0.2" +getrandom = "0.4" # Serialization serde = { version = "1.0", features = ["derive"] } diff --git a/crates/wraith-crypto/Cargo.toml b/crates/wraith-crypto/Cargo.toml index a9b90b28..8c06cf21 100644 --- a/crates/wraith-crypto/Cargo.toml +++ b/crates/wraith-crypto/Cargo.toml @@ -21,7 +21,7 @@ blake3 = { version = "1.5", default-features = false } snow = { version = "0.10", default-features = false, features = ["default-resolver", "default-resolver-crypto"] } rand_core = { version = "0.6", default-features = false, features = ["getrandom"] } zeroize = { version = "1.7", default-features = false, features = ["alloc", "derive"] } -getrandom = { version = "0.2", default-features = false } +getrandom = { version = "0.4", default-features = false } thiserror = { version = "2.0", default-features = false } argon2 = { version = "0.5", default-features = false, features = ["alloc"] } serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }