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