@@ -22,6 +22,8 @@ strum_macros = "0.23.1"
22
22
hex = { version = " 0.4.2" , default-features = false , features = [ " std" ] }
23
23
quickcheck = { version = " 0.9" , optional = true }
24
24
quickcheck_macros = { version = " 0.9" , optional = true }
25
+ proptest = { git = " https://github.com/input-output-hk/proptest.git" , optional = true }
26
+ test-strategy = { version = " 0.1" , optional = true }
25
27
ed25519-bip32 = { version = " 0.4.1" , optional = true }
26
28
thiserror = " 1.0"
27
29
lazy_static = { version = " 1.3.0" , optional = true }
@@ -37,17 +39,22 @@ property-test-api = [
37
39
" chain-time/property-test-api" ,
38
40
" chain-addr/property-test-api" ,
39
41
" chain-evm/property-test-api" ,
42
+ " imhamt/property-test-api" ,
40
43
" quickcheck" ,
41
44
" quickcheck_macros" ,
45
+ " proptest" ,
46
+ " test-strategy" ,
42
47
" lazy_static" ,
43
48
" rand_chacha" ,
44
49
" ed25519-bip32" ]
45
50
with-bench = [" criterion" ," property-test-api" ]
46
- evm = [" chain-evm" ]
51
+ evm = [" chain-evm" , " proptest/evm " ]
47
52
48
53
[dev-dependencies ]
49
54
quickcheck = " 0.9"
50
55
quickcheck_macros = " 0.9"
56
+ proptest = { git = " https://github.com/input-output-hk/proptest.git" }
57
+ test-strategy = " 0.1"
51
58
chain-core = { path = " ../chain-core" }
52
59
chain-crypto = { path = " ../chain-crypto" , features =[" property-test-api" ]}
53
60
chain-time = { path = " ../chain-time" , features =[" property-test-api" ]}
0 commit comments