]> git.lizzy.rs Git - rust.git/blob - crates/ide_db/Cargo.toml
internal: more reasonable grammar for blocks
[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 edition = "2018"
7
8 [lib]
9 doctest = false
10
11 [dependencies]
12 cov-mark = "2.0.0-pre.1"
13 tracing = "0.1"
14 rayon = "1.5.0"
15 fst = { version = "0.4", default-features = false }
16 rustc-hash = "1.1.0"
17 once_cell = "1.3.1"
18 either = "1.6.1"
19 itertools = "0.10.0"
20 arrayvec = "0.7"
21
22 stdx = { path = "../stdx", version = "0.0.0" }
23 syntax = { path = "../syntax", version = "0.0.0" }
24 text_edit = { path = "../text_edit", version = "0.0.0" }
25 base_db = { path = "../base_db", version = "0.0.0" }
26 profile = { path = "../profile", version = "0.0.0" }
27 # ide should depend only on the top-level `hir` package. if you need
28 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
29 hir = { path = "../hir", version = "0.0.0" }
30 limit = { path = "../limit", version = "0.0.0" }
31
32 [dev-dependencies]
33 test_utils = { path = "../test_utils" }
34 expect-test = "1.1"