From ca46a0879bdf7feae9f89679c0092b5a735ee175 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 May 2022 12:52:04 +0000 Subject: [PATCH] Bump rand_pcg from 0.2.1 to 0.3.1 Bumps [rand_pcg](https://github.com/rust-random/rand) from 0.2.1 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_pcg-0.2.1...rand_pcg-0.3.1) --- updated-dependencies: - dependency-name: rand_pcg dependency-type: direct:production update-type: version-update:semver-minor ... 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 fc63b9d80bdf2..0113f347ed9ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4806,7 +4806,7 @@ dependencies = [ "pretty_assertions", "pwasm-utils 0.16.0", "rand 0.7.3", - "rand_pcg", + "rand_pcg 0.3.1", "serde", "sp-core", "sp-io", @@ -6422,7 +6422,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]] @@ -6526,6 +6526,15 @@ dependencies = [ "rand_core 0.5.1", ] +[[package]] +name = "rand_pcg" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e" +dependencies = [ + "rand_core 0.6.2", +] + [[package]] name = "rawpointer" version = "0.2.1" diff --git a/frame/contracts/Cargo.toml b/frame/contracts/Cargo.toml index 018a8a5df672e..9eff1fd67c2b6 100644 --- a/frame/contracts/Cargo.toml +++ b/frame/contracts/Cargo.toml @@ -32,7 +32,7 @@ log = { version = "0.4.14", 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.1", optional = true } [dev-dependencies] assert_matches = "1.3.0"