From 404373a54d21ffed92414fc86d7f323fc316964c Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 21 Dec 2020 06:22:32 +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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 30c415b..9065fa9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" [dependencies] smallvec = {version = "1.4.0", optional = true} -rand = {version = "0.7", optional = true} +rand = {version = "0.8", optional = true} rand_core = {version = "0.5", optional = true} clap = {version = "3.0.0-beta.1", optional = true, default-features = false, features = ["std", "derive", "suggestions"]} @@ -21,7 +21,7 @@ criterion = "0.3" quickcheck = {version = "0.9", default-features = false} quickcheck_macros = "0.9" sudoku = { version = "0.7", features = ["unchecked_indexing"]} -rand = "0.7" +rand = "0.8" [features] default = ["smallvec", "cli", "generate", "std"]