]> git.lizzy.rs Git - rust.git/blob - crates/ide_db/Cargo.toml
Merge #5841
[rust.git] / crates / ide_db / Cargo.toml
1 [package]
2 name = "ide_db"
3 version = "0.0.0"
4 description = "TBD"
5 license = "MIT OR Apache-2.0"
6 authors = ["rust-analyzer developers"]
7 edition = "2018"
8
9 [lib]
10 doctest = false
11
12 [features]
13 wasm = []
14
15 [dependencies]
16 log = "0.4.8"
17 rayon = "1.3.0"
18 fst = { version = "0.4", default-features = false }
19 rustc-hash = "1.1.0"
20 once_cell = "1.3.1"
21 either = "1.5.3"
22
23 stdx = { path = "../stdx", version = "0.0.0" }
24 syntax = { path = "../syntax", version = "0.0.0" }
25 text_edit = { path = "../text_edit", version = "0.0.0" }
26 base_db = { path = "../base_db", version = "0.0.0" }
27 profile = { path = "../profile", version = "0.0.0" }
28 test_utils = { path = "../test_utils", version = "0.0.0" }
29 # ide should depend only on the top-level `hir` package. if you need
30 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
31 hir = { path = "../hir", version = "0.0.0" }