From 3cb7578233ee71b0d21aa2826840eca31ea55993 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 May 2021 06:23:14 +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) Signed-off-by: dependabot[bot] --- Cargo.lock | 18 +++++++++++++++++- runtime/parachains/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c608f59d..8674fbac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5491,7 +5491,7 @@ dependencies = [ "parity-scale-codec", "polkadot-primitives", "rand 0.7.3", - "rand_chacha 0.2.2", + "rand_chacha 0.3.0", "rustc-hex", "sc-keystore", "serde", @@ -6149,6 +6149,16 @@ dependencies = [ "rand_core 0.5.1", ] +[[package]] +name = "rand_chacha" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.2", +] + [[package]] name = "rand_core" version = "0.3.1" @@ -6173,6 +6183,12 @@ dependencies = [ "getrandom", ] +[[package]] +name = "rand_core" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7" + [[package]] name = "rand_distr" version = "0.2.2" diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index 9e15b98c..a0ee4385 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -39,7 +39,7 @@ primitives = { package = "polkadot-primitives", path = "../../primitives", defau libsecp256k1 = { version = "0.3.5", default-features = false, optional = true } rand = { version = "0.7.3", default-features = false } -rand_chacha = { version = "0.2.2", default-features = false } +rand_chacha = { version = "0.3.0", default-features = false } [dev-dependencies] futures = "0.3.8"