From aab4ca4634b8df4c2c9fd53f5032df9422677909 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 05:25:50 +0000 Subject: [PATCH] Update rand requirement from 0.7 to 0.8 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.0) Signed-off-by: dependabot-preview[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d076f2f..ef3e402 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,5 +24,5 @@ nightly = ["packed_simd"] [dependencies] twox-hash = "1.1" serde = { version = "1.0", features = ["derive"] } -rand = { version = "0.7", features = ["small_rng"] } +rand = { version = "0.8", features = ["small_rng"] } packed_simd = { version = "0.3", features = ["into_bits"], optional = true }