15189bc724
1021: Wasm dependencies r=matklad a=detrumi As a first step towards running RA on WASM (see #1007), this tweaks the dependencies somewhat so that projects built using `wasm-pack` can use `ra_ide_api` as a dependency. There were two problems: - use of undeclared type or module `MmapInner` This error occurred because of the `memmap` crate, as a dependency of `fst` Solution: specify `default-features = false` for the `fst` package (see https://github.com/BurntSushi/fst/issues/70) - use of undeclared type or module `imp` This happened in the `wait-timeout` crate ([which uses `Command` under the hood](https://github.com/alexcrichton/wait-timeout/issues/18)), a dependency of `rusty-fork` which is a dependency of `proptest`. Solution: move `proptest` to dev-dependencies and add `#[cfg(test)]` to the `test_utils` crate. **Edit:** Oh, that causes trouble with resolving the import when running the tests. Hmm... Co-authored-by: Wilco Kusee <wilcokusee@gmail.com>
37 lines
901 B
TOML
37 lines
901 B
TOML
[package]
|
|
edition = "2018"
|
|
name = "ra_ide_api"
|
|
version = "0.1.0"
|
|
authors = ["rust-analyzer developers"]
|
|
|
|
[dependencies]
|
|
itertools = "0.8.0"
|
|
join_to_string = "0.1.3"
|
|
log = "0.4.5"
|
|
relative-path = "0.4.0"
|
|
rayon = "1.0.2"
|
|
fst = { version = "0.3.1", default-features = false }
|
|
rustc-hash = "1.0"
|
|
parking_lot = "0.7.0"
|
|
unicase = "2.2.0"
|
|
superslice = "1.0.0"
|
|
|
|
jemallocator = { version = "0.1.9", optional = true }
|
|
jemalloc-ctl = { version = "0.2.0", optional = true }
|
|
|
|
ra_syntax = { path = "../ra_syntax" }
|
|
ra_ide_api_light = { path = "../ra_ide_api_light" }
|
|
ra_text_edit = { path = "../ra_text_edit" }
|
|
ra_db = { path = "../ra_db" }
|
|
ra_fmt = { path = "../ra_fmt" }
|
|
hir = { path = "../ra_hir", package = "ra_hir" }
|
|
test_utils = { path = "../test_utils" }
|
|
ra_assists = { path = "../ra_assists" }
|
|
|
|
[dev-dependencies]
|
|
insta = "0.7.0"
|
|
proptest = "0.9.0"
|
|
|
|
[features]
|
|
jemalloc = [ "jemallocator", "jemalloc-ctl" ]
|