Skip to content

Commit 9083d3c

Browse files
dependabot[bot]yoshuawuyts
authored andcommitted
Update quickcheck requirement from 0.6.2 to 0.7.1 (#15)
* Update quickcheck requirement from 0.6.2 to 0.7.1 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/commits/0.7.1) Signed-off-by: dependabot[bot] <[email protected]> * fix quickcheck tests Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent 928fe1a commit 9083d3c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ random-access-storage = "0.6.0"
1414
mkdirp = "0.1.0"
1515

1616
[dev-dependencies]
17-
quickcheck = "0.6.2"
17+
quickcheck = "0.7.1"
1818
tempfile = "3.0.3"
19+
rand = "0.5.5"

tests/model.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
#[macro_use]
22
extern crate quickcheck;
3+
extern crate rand;
34
extern crate random_access_disk as rad;
45
extern crate random_access_storage;
56
extern crate tempfile;
67

78
use self::Op::*;
89
use quickcheck::{Arbitrary, Gen};
10+
use rand::Rng;
911
use random_access_storage::RandomAccess;
1012
use std::u8;
1113
use tempfile::Builder;

0 commit comments

Comments
 (0)