From 0b9b4380cf3639b79dbf1db5e6851d3f06e6526e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Jan 2021 08:50:58 +0100 Subject: [PATCH] Update rand requirement from 0.7 to 0.8 (#119) Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [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/0.7.0...0.8.2) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- trie-db/test/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trie-db/test/Cargo.toml b/trie-db/test/Cargo.toml index ad660ef4..cd5b542d 100644 --- a/trie-db/test/Cargo.toml +++ b/trie-db/test/Cargo.toml @@ -16,7 +16,7 @@ trie-db = { path = "..", version = "0.22.1"} hash-db = { path = "../../hash-db", version = "0.15.2"} rustc-hex = { version = "2.1.0" } memory-db = { path = "../../memory-db", version = "0.25.0" } -rand = { version = "0.7", default-features = false, features = ["small_rng"] } +rand = { version = "0.8", default-features = false, features = ["small_rng"] } trie-root = { path = "../../trie-root", version = "0.16.0"} trie-standardmap = { path = "../../test-support/trie-standardmap", version = "0.15.2" } keccak-hasher = { path = "../../test-support/keccak-hasher", version = "0.15.2" }