aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_text_edit
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-03-23 12:09:07 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-03-23 12:09:07 +0000
commit331220fee2c8c6d9f6e87c371ab101baace205dc (patch)
tree08df153ad087aedd74ef2878698ec70775404161 /crates/ra_text_edit
parentd99abe4c252447c9940f77568a96c9a96f6f8905 (diff)
parent497934a7b44a9857be3698354711ad1b0da4b8c9 (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_text_edit')
-rw-r--r--crates/ra_text_edit/Cargo.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/crates/ra_text_edit/Cargo.toml b/crates/ra_text_edit/Cargo.toml
index 5769940df..b40026004 100644
--- a/crates/ra_text_edit/Cargo.toml
+++ b/crates/ra_text_edit/Cargo.toml
@@ -7,7 +7,12 @@ publish = false
7 7
8[dependencies] 8[dependencies]
9text_unit = "0.1.6" 9text_unit = "0.1.6"
10proptest = "0.9.0" 10
11[dependencies.proptest]
12version = "0.9.0"
13# Disable `fork` feature to allow compiling on webassembly
14default-features = false
15features = ["std", "bit-set", "break-dead-code"]
11 16
12[dev-dependencies] 17[dev-dependencies]
13test_utils = { path = "../test_utils" } 18test_utils = { path = "../test_utils" }