From 9371cd813703c9defc5861c8d457ff906766b1a8 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 11 Jan 2021 06:19:00 +0000 Subject: [PATCH] Update quickcheck requirement from 0.9 to 1.0 Updates the requirements on [quickcheck](https://github.com/BurntSushi/quickcheck) to permit the latest version. - [Release notes](https://github.com/BurntSushi/quickcheck/releases) - [Commits](https://github.com/BurntSushi/quickcheck/compare/quickcheck_macros-0.9.0...1.0.1) 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..755dbe1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ clap = {version = "3.0.0-beta.1", optional = true, default-features = false, fea [dev-dependencies] criterion = "0.3" -quickcheck = {version = "0.9", default-features = false} +quickcheck = {version = "1.0", default-features = false} quickcheck_macros = "0.9" sudoku = { version = "0.7", features = ["unchecked_indexing"]} rand = "0.7"