diff --git a/Cargo.lock b/Cargo.lock index 14f4f51..489ccb8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -147,7 +147,7 @@ checksum = "8c070b79a496dccd931229780ad5bbedd535ceff6c3565605a8e440e18e1aa2b" dependencies = [ "getrandom", "hybrid-array", - "rand_core", + "rand_core 0.6.4", ] [[package]] @@ -389,7 +389,7 @@ dependencies = [ "cbc", "der", "pbkdf2", - "rand_core", + "rand_core 0.6.4", "scrypt", "sha2", "spki", @@ -402,7 +402,7 @@ source = "git+https://github.com/RustCrypto/formats.git#3fb883b2f445e74f38f51fef dependencies = [ "der", "pkcs5", - "rand_core", + "rand_core 0.6.4", "spki", ] @@ -446,7 +446,7 @@ dependencies = [ "num-traits", "rand", "rand_chacha", - "rand_xorshift", + "rand_xorshift 0.3.0", "regex-syntax", "rusty-fork", "tempfile", @@ -476,7 +476,7 @@ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", "rand_chacha", - "rand_core", + "rand_core 0.6.4", ] [[package]] @@ -486,7 +486,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", - "rand_core", + "rand_core 0.6.4", ] [[package]] @@ -498,13 +498,28 @@ dependencies = [ "getrandom", ] +[[package]] +name = "rand_core" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" + [[package]] name = "rand_xorshift" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" dependencies = [ - "rand_core", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_xorshift" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" +dependencies = [ + "rand_core 0.9.3", ] [[package]] @@ -529,8 +544,8 @@ dependencies = [ "proptest", "rand", "rand_chacha", - "rand_core", - "rand_xorshift", + "rand_core 0.6.4", + "rand_xorshift 0.4.0", "serde", "serde_test", "serdect", @@ -667,7 +682,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "054d71959c7051b9042c26af337f05cc930575ed2604d7d3ced3158383e59734" dependencies = [ "digest", - "rand_core", + "rand_core 0.6.4", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index dd466e2..32a4120 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ base64ct = { version = "1", features = ["alloc"] } hex-literal = "0.4.1" proptest = "1" serde_test = "1.0.89" -rand_xorshift = "0.3" +rand_xorshift = "0.4" rand_chacha = "0.3" rand = "0.8" rand_core = { version = "0.6", default-features = false }