diff --git a/Cargo.lock b/Cargo.lock index 43f5eae..7b6db28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -822,7 +822,7 @@ dependencies = [ "indicatif", "predicates", "proptest", - "rand 0.8.5", + "rand", "reversible-core", "serde", "serde_json", @@ -1086,8 +1086,8 @@ dependencies = [ "bit-vec", "bitflags", "num-traits", - "rand 0.9.2", - "rand_chacha 0.9.0", + "rand", + "rand_chacha", "rand_xorshift", "regex-syntax", "rusty-fork", @@ -1122,37 +1122,16 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", -] - [[package]] name = "rand" version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ - "rand_chacha 0.9.0", + "rand_chacha", "rand_core 0.9.5", ] -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", -] - [[package]] name = "rand_chacha" version = "0.9.0" diff --git a/crates/januskey-cli/Cargo.toml b/crates/januskey-cli/Cargo.toml index 33442ef..17e88b4 100644 --- a/crates/januskey-cli/Cargo.toml +++ b/crates/januskey-cli/Cargo.toml @@ -35,7 +35,7 @@ whoami = "1" # Key management dependencies aes-gcm = "0.10" argon2 = "0.5" -rand = "0.8" +rand = "0.9" zeroize = { version = "1", features = ["derive"] } subtle = "2" base64 = "0.22"