File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ramp"
3
3
description = " A high-performance multiple-precision arithmetic library"
4
- version = " 0.3.9 "
4
+ version = " 0.3.10 "
5
5
authors = [
" James Miller <[email protected] >" ]
6
6
build = " build.rs"
7
7
license = " Apache-2.0"
@@ -37,5 +37,5 @@ gcc = "0.3"
37
37
38
38
[dev-dependencies ]
39
39
num-bigint = " 0.1"
40
- quickcheck = " 0.4.1 "
41
- quickcheck_macros = " 0.4.1 "
40
+ quickcheck = " 0.6 "
41
+ quickcheck_macros = " 0.6 "
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ use ramp::ll::limb::Limb;
8
8
use num_bigint:: BigUint ;
9
9
10
10
#[ cfg( feature = "full-quickcheck" ) ]
11
- const QUICKCHECK_THOROUGNESS : usize = 100 ;
11
+ const QUICKCHECK_THOROUGNESS : u64 = 100 ;
12
12
#[ cfg( not( feature = "full-quickcheck" ) ) ]
13
- const QUICKCHECK_THOROUGNESS : usize = 1 ;
13
+ const QUICKCHECK_THOROUGNESS : u64 = 1 ;
14
14
15
15
macro_rules! quickcheck {
16
16
( @as_items $( $i: item) * ) => ( $( $i) * ) ;
You can’t perform that action at this time.
0 commit comments