From e8f38bcd83d226492d3763e8b3c37bdc376cbda5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Nov 2021 17:18:37 +0000 Subject: [PATCH] Bump rand_chacha from 0.2.2 to 0.3.0 Bumps [rand_chacha](https://github.com/rust-random/rand) from 0.2.2 to 0.3.0. - [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.0) --- updated-dependencies: - dependency-name: rand_chacha dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 +++++----- client/consensus/babe/Cargo.toml | 2 +- frame/society/Cargo.toml | 2 +- frame/staking/Cargo.toml | 4 ++-- primitives/keystore/Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ed10002bd5489..808383c3f3e5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5883,7 +5883,7 @@ dependencies = [ "frame-system", "pallet-balances", "parity-scale-codec", - "rand_chacha 0.2.2", + "rand_chacha 0.3.0", "scale-info", "sp-core", "sp-io", @@ -5907,7 +5907,7 @@ dependencies = [ "pallet-staking-reward-curve", "pallet-timestamp", "parity-scale-codec", - "rand_chacha 0.2.2", + "rand_chacha 0.3.0", "scale-info", "serde", "sp-application-crypto", @@ -7673,7 +7673,7 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.11.1", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.0", "retain_mut", "sc-block-builder", "sc-client-api", @@ -9365,7 +9365,7 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.11.1", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.0", "schnorrkel", "serde", "sp-core", @@ -10810,7 +10810,7 @@ version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f559b464de2e2bdabcac6a210d12e9b5a5973c251e102c44c585c71d51bd78e" dependencies = [ - "cfg-if 1.0.0", + "cfg-if 0.1.10", "rand 0.8.4", "static_assertions", ] diff --git a/client/consensus/babe/Cargo.toml b/client/consensus/babe/Cargo.toml index 66ad6287f40df..27dedf02f2d32 100644 --- a/client/consensus/babe/Cargo.toml +++ b/client/consensus/babe/Cargo.toml @@ -60,5 +60,5 @@ sc-network = { version = "0.10.0-dev", path = "../../network" } sc-network-test = { version = "0.8.0", path = "../../network/test" } substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } sc-block-builder = { version = "0.10.0-dev", path = "../../block-builder" } -rand_chacha = "0.2.2" +rand_chacha = "0.3.0" tempfile = "3.1.0" diff --git a/frame/society/Cargo.toml b/frame/society/Cargo.toml index ab2c379c51b5c..84edf8b08a1ff 100644 --- a/frame/society/Cargo.toml +++ b/frame/society/Cargo.toml @@ -19,7 +19,7 @@ sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../pr sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" } frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" } frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" } -rand_chacha = { version = "0.2", default-features = false } +rand_chacha = { version = "0.3", default-features = false } [dev-dependencies] sp-core = { version = "4.0.0-dev", path = "../../primitives/core" } diff --git a/frame/staking/Cargo.toml b/frame/staking/Cargo.toml index 4b608bd91dc76..5f6e1214c45b3 100644 --- a/frame/staking/Cargo.toml +++ b/frame/staking/Cargo.toml @@ -34,7 +34,7 @@ log = { version = "0.4.14", default-features = false } # Optional imports for benchmarking frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true } -rand_chacha = { version = "0.2", default-features = false, optional = true } +rand_chacha = { version = "0.3", default-features = false, optional = true } [dev-dependencies] sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" } @@ -47,7 +47,7 @@ pallet-bags-list = { version = "4.0.0-dev", features = ["runtime-benchmarks"], p substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" } frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" } frame-election-provider-support = { version = "4.0.0-dev", path = "../election-provider-support" } -rand_chacha = { version = "0.2" } +rand_chacha = { version = "0.3" } [features] default = ["std"] diff --git a/primitives/keystore/Cargo.toml b/primitives/keystore/Cargo.toml index 3a0532f1db313..8fdb827158674 100644 --- a/primitives/keystore/Cargo.toml +++ b/primitives/keystore/Cargo.toml @@ -26,7 +26,7 @@ sp-externalities = { version = "0.10.0-dev", path = "../externalities", default- [dev-dependencies] rand = "0.7.2" -rand_chacha = "0.2.2" +rand_chacha = "0.3.0" [features]