diff --git a/Cargo.lock b/Cargo.lock index 86b82698ce..a5c785ed87 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -784,7 +784,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" dependencies = [ "generic-array", - "rand_core", + "rand_core 0.6.4", "typenum", ] @@ -934,7 +934,7 @@ dependencies = [ "ed25519", "hashbrown 0.14.5", "hex", - "rand_core", + "rand_core 0.6.4", "sha2 0.10.8", "zeroize", ] @@ -1215,7 +1215,7 @@ version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea1015b5a70616b688dc230cfe50c8af89d972cb132d5a622814d29773b10b9" dependencies = [ - "rand_core", + "rand_core 0.6.4", ] [[package]] @@ -1622,7 +1622,7 @@ checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d" dependencies = [ "byteorder", "keccak", - "rand_core", + "rand_core 0.6.4", "zeroize", ] @@ -1993,8 +1993,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", - "rand_chacha", - "rand_core", + "rand_chacha 0.3.1", + "rand_core 0.6.4", ] [[package]] @@ -2004,7 +2004,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", - "rand_core", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core 0.9.3", ] [[package]] @@ -2016,6 +2026,12 @@ dependencies = [ "getrandom 0.2.15", ] +[[package]] +name = "rand_core" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" + [[package]] name = "rayon" version = "1.10.0" @@ -2193,7 +2209,7 @@ dependencies = [ "curve25519-dalek", "getrandom_or_panic", "merlin", - "rand_core", + "rand_core 0.6.4", "serde_bytes", "sha2 0.10.8", "subtle", @@ -2401,7 +2417,7 @@ dependencies = [ "pin-project", "poly1305", "rand", - "rand_chacha", + "rand_chacha 0.9.0", "rusqlite", "ruzstd", "schnorrkel", @@ -2479,7 +2495,7 @@ dependencies = [ "parking_lot", "pin-project", "rand", - "rand_chacha", + "rand_chacha 0.9.0", "serde", "serde_json", "siphasher", @@ -3396,7 +3412,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" dependencies = [ "curve25519-dalek", - "rand_core", + "rand_core 0.6.4", "serde", "zeroize", ] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 28f790e8c5..5de2a4d20e 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -65,7 +65,7 @@ num-traits = { version = "0.2.19", default-features = false } pbkdf2 = { version = "0.12.1", default-features = false } poly1305 = { version = "0.8.0", default-features = false } rand = { version = "0.8.5", default-features = false, features = ["alloc"] } -rand_chacha = { version = "0.3.1", default-features = false } +rand_chacha = { version = "0.9.0", default-features = false } ruzstd = { version = "0.8.0", default-features = false } schnorrkel = { version = "0.11.2", default-features = false, features = ["preaudit_deprecated", "alloc"] } serde = { version = "1.0.183", default-features = false, features = ["alloc", "derive"] } diff --git a/light-base/Cargo.toml b/light-base/Cargo.toml index c80a39136c..1ff15187b4 100644 --- a/light-base/Cargo.toml +++ b/light-base/Cargo.toml @@ -31,7 +31,7 @@ itertools = { version = "0.14.0", default-features = false, features = ["use_all lru = { version = "0.12.0", default-features = false, features = ["hashbrown"] } # The `hashbrown` feature brings no-std compatibility. pin-project = "1.1.5" rand = { version = "0.8.5", default-features = false, features = ["alloc"] } -rand_chacha = { version = "0.3.1", default-features = false } +rand_chacha = { version = "0.9.0", default-features = false } serde = { version = "1.0.183", default-features = false, features = ["alloc", "derive"] } serde_json = { version = "1.0.104", default-features = false, features = ["alloc"] } siphasher = { version = "1.0.1", default-features = false }