diff --git a/Cargo.lock b/Cargo.lock index e086f493b31fa9..79d12bdeb1422a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4832,7 +4832,7 @@ dependencies = [ "lru", "matches", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.1", "raptorq", "rayon", "reqwest", @@ -5062,7 +5062,7 @@ dependencies = [ "num-traits", "num_cpus", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.1", "rayon", "rustc_version 0.4.0", "serde", @@ -5161,7 +5161,7 @@ dependencies = [ "num_cpus", "prost", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.1", "rayon", "reed-solomon-erasure", "rocksdb", @@ -5746,7 +5746,7 @@ dependencies = [ "num_cpus", "ouroboros", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.1", "rayon", "regex", "rustc_version 0.4.0", @@ -5808,7 +5808,7 @@ dependencies = [ "pbkdf2 0.10.0", "qstring", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.1", "rustc_version 0.4.0", "rustversion", "serde", diff --git a/core/Cargo.toml b/core/Cargo.toml index 0575ce6f10bbed..12f3e39a2e8cef 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -28,7 +28,7 @@ itertools = "0.10.3" log = "0.4.14" lru = "0.7.2" rand = "0.7.0" -rand_chacha = "0.2.2" +rand_chacha = "0.3.1" rayon = "1.5.1" retain_mut = "0.1.5" serde = "1.0.136" diff --git a/gossip/Cargo.toml b/gossip/Cargo.toml index c00d3d7b906692..afb97cf426c6b8 100644 --- a/gossip/Cargo.toml +++ b/gossip/Cargo.toml @@ -22,7 +22,7 @@ lru = "0.7.2" matches = "0.1.9" num-traits = "0.2" rand = "0.7.0" -rand_chacha = "0.2.2" +rand_chacha = "0.3.1" rayon = "1.5.1" serde = "1.0.136" serde_bytes = "0.11" diff --git a/ledger/Cargo.toml b/ledger/Cargo.toml index 0fd3d1324dcc8b..d30d9ab0c78a39 100644 --- a/ledger/Cargo.toml +++ b/ledger/Cargo.toml @@ -26,7 +26,7 @@ num-traits = "0.2" num_cpus = "1.13.1" prost = "0.9.0" rand = "0.7.0" -rand_chacha = "0.2.2" +rand_chacha = "0.3.1" rayon = "1.5.1" serde = "1.0.136" serde_bytes = "0.11.5" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index ca8b439a7c6d3b..91f1eaec2acd23 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -66,7 +66,7 @@ name = "solana_runtime" assert_matches = "1.5.0" ed25519-dalek = "=1.0.1" libsecp256k1 = "0.6.0" -rand_chacha = "0.2.2" +rand_chacha = "0.3.1" solana-logger = { path = "../logger", version = "=1.10.0" } [package.metadata.docs.rs] diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index b17412a42b98e5..f948b63108b1a0 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -63,7 +63,7 @@ num-traits = "0.2" pbkdf2 = { version = "0.10.0", default-features = false } qstring = "0.7.2" rand = { version = "0.7.0", optional = true } -rand_chacha = { version = "0.2.2", optional = true } +rand_chacha = { version = "0.3.1", optional = true } rustversion = "1.0.6" serde = "1.0.136" serde_bytes = "0.11"