From 654ca497adfce82e623b169339e27ad65f2be1de Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 15 Dec 2020 05:55:56 +0000 Subject: [PATCH] Update rand_core requirement from 0.5 to 0.6 Updates the requirements on [rand_core](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/rand_core-0.5.0...rand_core-0.6.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 30c415b..74d26ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" [dependencies] smallvec = {version = "1.4.0", optional = true} rand = {version = "0.7", optional = true} -rand_core = {version = "0.5", optional = true} +rand_core = {version = "0.6", optional = true} clap = {version = "3.0.0-beta.1", optional = true, default-features = false, features = ["std", "derive", "suggestions"]}