Skip to content

Commit

Permalink
Disable fork feature for proptest
Browse files Browse the repository at this point in the history
  • Loading branch information
detrumi committed Mar 23, 2019
1 parent 15189bc commit 497934a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 32 deletions.
29 changes: 0 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion crates/ra_ide_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ ra_assists = { path = "../ra_assists" }

[dev-dependencies]
insta = "0.7.0"
proptest = "0.9.0"

[dev-dependencies.proptest]
version = "0.9.0"
# Disable `fork` feature to allow compiling on webassembly
default-features = false
features = ["std", "bit-set", "break-dead-code"]

[features]
jemalloc = [ "jemallocator", "jemalloc-ctl" ]
7 changes: 6 additions & 1 deletion crates/ra_ide_api_light/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@ ra_fmt = { path = "../ra_fmt" }

[dev-dependencies]
test_utils = { path = "../test_utils" }
proptest = "0.9.0"
insta = "0.7.0"

[dev-dependencies.proptest]
version = "0.9.0"
# Disable `fork` feature to allow compiling on webassembly
default-features = false
features = ["std", "bit-set", "break-dead-code"]
7 changes: 6 additions & 1 deletion crates/ra_text_edit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ publish = false

[dependencies]
text_unit = "0.1.6"
proptest = "0.9.0"

[dependencies.proptest]
version = "0.9.0"
# Disable `fork` feature to allow compiling on webassembly
default-features = false
features = ["std", "bit-set", "break-dead-code"]

[dev-dependencies]
test_utils = { path = "../test_utils" }

0 comments on commit 497934a

Please sign in to comment.