diff options
Diffstat (limited to 'crates/ra_text_edit')
-rw-r--r-- | crates/ra_text_edit/Cargo.toml | 7 |
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] |
9 | text_unit = "0.1.6" | 9 | text_unit = "0.1.6" |
10 | proptest = "0.9.0" | 10 | |
11 | [dependencies.proptest] | ||
12 | version = "0.9.0" | ||
13 | # Disable `fork` feature to allow compiling on webassembly | ||
14 | default-features = false | ||
15 | features = ["std", "bit-set", "break-dead-code"] | ||
11 | 16 | ||
12 | [dev-dependencies] | 17 | [dev-dependencies] |
13 | test_utils = { path = "../test_utils" } | 18 | test_utils = { path = "../test_utils" } |