@@ -25,9 +25,18 @@ serde = { version = "1.0", features = ["derive"], optional = true }
2525serde_json = { version = " 1.0" , optional = true }
2626thiserror = " 1"
2727derive_more = " 0.99"
28- proptest = {version = " 1.0.0" , optional = true }
2928proptest-derive = {version = " 0.3.0" , optional = true }
3029
30+ [dependencies .proptest ]
31+ # wasm support, via https://altsysrq.github.io/proptest-book/proptest/wasm.html
32+ version = " 1.0.0"
33+ # The default feature set includes things like process forking which are not
34+ # supported in Web Assembly.
35+ default-features = false
36+ # Enable using the `std` crate.
37+ features = [" std" ]
38+ optional = true
39+
3140[dependencies .serde_with ]
3241version = " 1.9.1"
3342features = [ " json" ]
@@ -41,17 +50,9 @@ arbitrary = ["proptest", "proptest-derive"]
4150
4251[dev-dependencies ]
4352wasm-bindgen-test = " 0.3.10"
44- rand = " 0.7 .3"
53+ rand = " 0.8 .3"
4554ergotree-ir = { version = " ^0.13.0" , path = " ../ergotree-ir" , features = [" arbitrary" ] }
4655ergotree-interpreter = { version = " ^0.13.0" , path = " ../ergotree-interpreter" , features = [" arbitrary" ] }
4756sigma-test-util = { version = " 0.2.0" , path = " ../sigma-test-util" }
4857pretty_assertions = " 0.7.2"
4958
50- [dev-dependencies .proptest ]
51- # wasm support, via https://altsysrq.github.io/proptest-book/proptest/wasm.html
52- version = " 1.0.0"
53- # The default feature set includes things like process forking which are not
54- # supported in Web Assembly.
55- default-features = false
56- # Enable using the `std` crate.
57- features = [" std" ]
0 commit comments