Skip to content

Commit c72ea66

Browse files
committed
Fix broken build by updated quickcheck deps
1 parent 7525e9e commit c72ea66

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ramp"
33
description = "A high-performance multiple-precision arithmetic library"
4-
version = "0.3.9"
4+
version = "0.3.10"
55
authors = ["James Miller <[email protected]>"]
66
build = "build.rs"
77
license = "Apache-2.0"
@@ -37,5 +37,5 @@ gcc = "0.3"
3737

3838
[dev-dependencies]
3939
num-bigint = "0.1"
40-
quickcheck = "0.4.1"
41-
quickcheck_macros = "0.4.1"
40+
quickcheck = "0.6"
41+
quickcheck_macros = "0.6"

tests/quickcheck_limbs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ use ramp::ll::limb::Limb;
88
use num_bigint::BigUint;
99

1010
#[cfg(feature = "full-quickcheck")]
11-
const QUICKCHECK_THOROUGNESS: usize = 100;
11+
const QUICKCHECK_THOROUGNESS: u64 = 100;
1212
#[cfg(not(feature = "full-quickcheck"))]
13-
const QUICKCHECK_THOROUGNESS: usize = 1;
13+
const QUICKCHECK_THOROUGNESS: u64 = 1;
1414

1515
macro_rules! quickcheck {
1616
(@as_items $($i:item)*) => ($($i)*);

0 commit comments

Comments
 (0)