diff options
author | Wilco Kusee <[email protected]> | 2019-03-23 07:44:29 +0000 |
---|---|---|
committer | Wilco Kusee <[email protected]> | 2019-03-23 07:57:07 +0000 |
commit | 497934a7b44a9857be3698354711ad1b0da4b8c9 (patch) | |
tree | 2b30b6d4ffe02f96e9b10b81557ae4873b01ff46 /crates/ra_ide_api | |
parent | 15189bc7249fc68a1df0234721514b677a90a305 (diff) |
Disable fork feature for proptest
Diffstat (limited to 'crates/ra_ide_api')
-rw-r--r-- | crates/ra_ide_api/Cargo.toml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/crates/ra_ide_api/Cargo.toml b/crates/ra_ide_api/Cargo.toml index 97c8bab18..c64226801 100644 --- a/crates/ra_ide_api/Cargo.toml +++ b/crates/ra_ide_api/Cargo.toml | |||
@@ -30,7 +30,12 @@ ra_assists = { path = "../ra_assists" } | |||
30 | 30 | ||
31 | [dev-dependencies] | 31 | [dev-dependencies] |
32 | insta = "0.7.0" | 32 | insta = "0.7.0" |
33 | proptest = "0.9.0" | 33 | |
34 | [dev-dependencies.proptest] | ||
35 | version = "0.9.0" | ||
36 | # Disable `fork` feature to allow compiling on webassembly | ||
37 | default-features = false | ||
38 | features = ["std", "bit-set", "break-dead-code"] | ||
34 | 39 | ||
35 | [features] | 40 | [features] |
36 | jemalloc = [ "jemallocator", "jemalloc-ctl" ] | 41 | jemalloc = [ "jemallocator", "jemalloc-ctl" ] |