From 7e6c3edb0ed840b634ef54dc4d77b38d5410b971 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Apr 2021 07:55:25 +0000 Subject: [PATCH] Bump rand_pcg from 0.2.1 to 0.3.0 Bumps [rand_pcg](https://github.com/rust-random/rand) from 0.2.1 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_pcg-0.2.1...rand_pcg-0.3.0) Signed-off-by: dependabot[bot] --- Cargo.lock | 13 +++++++++++-- frame/contracts/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b11af51..6144ad7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4519,7 +4519,7 @@ dependencies = [ "pretty_assertions", "pwasm-utils 0.16.0", "rand 0.7.3", - "rand_pcg", + "rand_pcg 0.3.0", "serde", "sp-core", "sp-io", @@ -6028,7 +6028,7 @@ dependencies = [ "rand_chacha 0.2.2", "rand_core 0.5.1", "rand_hc 0.2.0", - "rand_pcg", + "rand_pcg 0.2.1", ] [[package]] @@ -6132,6 +6132,15 @@ dependencies = [ "rand_core 0.5.1", ] +[[package]] +name = "rand_pcg" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7de198537002b913568a3847e53535ace266f93526caf5c360ec41d72c5787f0" +dependencies = [ + "rand_core 0.6.2", +] + [[package]] name = "raw-cpuid" version = "8.1.2" diff --git a/frame/contracts/Cargo.toml b/frame/contracts/Cargo.toml index c5ba615..239af35 100644 --- a/frame/contracts/Cargo.toml +++ b/frame/contracts/Cargo.toml @@ -34,7 +34,7 @@ wasmi-validation = { version = "0.3.0", default-features = false } # Only used in benchmarking to generate random contract code rand = { version = "0.7.0", optional = true, default-features = false } -rand_pcg = { version = "0.2.1", optional = true } +rand_pcg = { version = "0.3.0", optional = true } [dev-dependencies] assert_matches = "1.3.0"