diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-03-23 12:09:07 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-03-23 12:09:07 +0000 |
commit | 331220fee2c8c6d9f6e87c371ab101baace205dc (patch) | |
tree | 08df153ad087aedd74ef2878698ec70775404161 /crates/ra_ide_api_light | |
parent | d99abe4c252447c9940f77568a96c9a96f6f8905 (diff) | |
parent | 497934a7b44a9857be3698354711ad1b0da4b8c9 (diff) |
Merge #1025
1025: Disable fork feature for proptest r=matklad a=detrumi
Co-authored-by: Wilco Kusee <[email protected]>
Diffstat (limited to 'crates/ra_ide_api_light')
-rw-r--r-- | crates/ra_ide_api_light/Cargo.toml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/crates/ra_ide_api_light/Cargo.toml b/crates/ra_ide_api_light/Cargo.toml index a30833dc3..4e69f5325 100644 --- a/crates/ra_ide_api_light/Cargo.toml +++ b/crates/ra_ide_api_light/Cargo.toml | |||
@@ -17,5 +17,10 @@ ra_fmt = { path = "../ra_fmt" } | |||
17 | 17 | ||
18 | [dev-dependencies] | 18 | [dev-dependencies] |
19 | test_utils = { path = "../test_utils" } | 19 | test_utils = { path = "../test_utils" } |
20 | proptest = "0.9.0" | ||
21 | insta = "0.7.0" | 20 | insta = "0.7.0" |
21 | |||
22 | [dev-dependencies.proptest] | ||
23 | version = "0.9.0" | ||
24 | # Disable `fork` feature to allow compiling on webassembly | ||
25 | default-features = false | ||
26 | features = ["std", "bit-set", "break-dead-code"] | ||