From 45e243ddb165cf4f3032636ab1d3780d3876d110 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Aug 2022 20:35:21 +0000 Subject: [PATCH] chore: bump rand_chacha from 0.2.2 to 0.3.1 Bumps [rand_chacha](https://github.com/rust-random/rand) from 0.2.2 to 0.3.1. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/rand_chacha-0.2.2...rand_chacha-0.3.1) --- updated-dependencies: - dependency-name: rand_chacha dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ client/Cargo.toml | 2 +- core/Cargo.toml | 2 +- gossip/Cargo.toml | 2 +- ledger/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- sdk/Cargo.toml | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c69706c460a31b..e2c0597f014be4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4992,7 +4992,7 @@ dependencies = [ "quinn 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", "quinn-proto 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.1", "rayon", "reqwest", "rustls 0.20.6", @@ -5091,7 +5091,7 @@ dependencies = [ "matches", "min-max-heap", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.1", "raptorq", "rayon", "rustc_version 0.4.0", @@ -5387,7 +5387,7 @@ dependencies = [ "num-traits", "num_cpus", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.1", "rayon", "regex", "rustc_version 0.4.0", @@ -5490,7 +5490,7 @@ dependencies = [ "num_enum", "prost 0.11.0", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.1", "rayon", "reed-solomon-erasure", "rocksdb", @@ -6053,7 +6053,7 @@ dependencies = [ "once_cell", "ouroboros", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.1", "rayon", "regex", "rustc_version 0.4.0", @@ -6168,7 +6168,7 @@ dependencies = [ "pbkdf2 0.11.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/client/Cargo.toml b/client/Cargo.toml index 365c508dcf07f8..fe3cdfae406a15 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -30,7 +30,7 @@ log = "0.4.17" quinn = "0.8.3" quinn-proto = "0.8.3" rand = "0.7.0" -rand_chacha = "0.2.2" +rand_chacha = "0.3.1" rayon = "1.5.3" reqwest = { version = "0.11.11", default-features = false, features = ["blocking", "brotli", "deflate", "gzip", "rustls-tls", "json"] } rustls = { version = "0.20.6", features = ["dangerous_configuration"] } diff --git a/core/Cargo.toml b/core/Cargo.toml index 148a307cb30685..926883e6ecf0b5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -31,7 +31,7 @@ log = "0.4.17" lru = "0.7.7" min-max-heap = "1.3.0" rand = "0.7.0" -rand_chacha = "0.2.2" +rand_chacha = "0.3.1" rayon = "1.5.3" serde = "1.0.143" serde_derive = "1.0.103" diff --git a/gossip/Cargo.toml b/gossip/Cargo.toml index 8cf1074872c614..84f9a3ca71553d 100644 --- a/gossip/Cargo.toml +++ b/gossip/Cargo.toml @@ -22,7 +22,7 @@ lru = "0.7.7" 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.3" serde = "1.0.143" serde_bytes = "0.11" diff --git a/ledger/Cargo.toml b/ledger/Cargo.toml index 6ad5b8d0c79392..25f4c4db331c14 100644 --- a/ledger/Cargo.toml +++ b/ledger/Cargo.toml @@ -28,7 +28,7 @@ num_cpus = "1.13.1" num_enum = "0.5.7" prost = "0.11.0" rand = "0.7.0" -rand_chacha = "0.2.2" +rand_chacha = "0.3.1" rayon = "1.5.3" reed-solomon-erasure = { version = "5.0.3", features = ["simd-accel"] } serde = "1.0.143" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 7fba4403807c36..e1888b06ac8a3e 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -70,7 +70,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.12.0" } [package.metadata.docs.rs] diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index a76da2b5f2ab2b..9c6023a0205789 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -63,7 +63,7 @@ num-traits = "0.2" pbkdf2 = { version = "0.11.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.9" serde = "1.0.143" serde_bytes = "0.11"