]> git.lizzy.rs Git - rust.git/blob - crates/ra_ide/Cargo.toml
Replace `ra_hir_expand::either` with crate
[rust.git] / crates / ra_ide / Cargo.toml
1 [package]
2 edition = "2018"
3 name = "ra_ide"
4 version = "0.1.0"
5 authors = ["rust-analyzer developers"]
6
7 [lib]
8 doctest = false
9
10 [features]
11 wasm = []
12
13 [dependencies]
14 either = "1.5"
15 format-buf = "1.0.0"
16 itertools = "0.8.0"
17 join_to_string = "0.1.3"
18 log = "0.4.5"
19 rayon = "1.0.2"
20 fst = { version = "0.3.1", default-features = false }
21 rustc-hash = "1.0"
22 unicase = "2.2.0"
23 superslice = "1.0.0"
24 rand = { version = "0.7.0", features = ["small_rng"] }
25 once_cell = "1.2.0"
26
27 ra_syntax = { path = "../ra_syntax" }
28 ra_text_edit = { path = "../ra_text_edit" }
29 ra_db = { path = "../ra_db" }
30 ra_cfg = { path = "../ra_cfg" }
31 ra_fmt = { path = "../ra_fmt" }
32 ra_prof = { path = "../ra_prof" }
33 test_utils = { path = "../test_utils" }
34 ra_assists = { path = "../ra_assists" }
35
36 # ra_ide should depend only on the top-level `hir` package. if you need
37 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
38 hir = { path = "../ra_hir", package = "ra_hir" }
39
40 [dev-dependencies]
41 insta = "0.12.0"
42
43 [dev-dependencies.proptest]
44 version = "0.9.0"
45 # Disable `fork` feature to allow compiling on webassembly
46 default-features = false
47 features = ["std", "bit-set", "break-dead-code"]