]> git.lizzy.rs Git - rust.git/blob - src/tools/rust-analyzer/crates/ide-db/Cargo.toml
:arrow_up: rust-analyzer
[rust.git] / src / tools / rust-analyzer / 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.35"
15 rayon = "1.5.3"
16 fst = { version = "0.4.7", default-features = false }
17 rustc-hash = "1.1.0"
18 once_cell = "1.15.0"
19 either = "1.7.0"
20 itertools = "0.10.5"
21 arrayvec = "0.7.2"
22 indexmap = "1.9.1"
23 memchr = "2.5.0"
24
25 stdx = { path = "../stdx", version = "0.0.0" }
26 parser = { path = "../parser", version = "0.0.0" }
27 syntax = { path = "../syntax", version = "0.0.0" }
28 text-edit = { path = "../text-edit", version = "0.0.0" }
29 base-db = { path = "../base-db", version = "0.0.0" }
30 profile = { path = "../profile", version = "0.0.0" }
31 # ide should depend only on the top-level `hir` package. if you need
32 # something from some `hir-xxx` subpackage, reexport the API via `hir`.
33 hir = { path = "../hir", version = "0.0.0" }
34 limit = { path = "../limit", version = "0.0.0" }
35
36 [dev-dependencies]
37 test-utils = { path = "../test-utils" }
38 sourcegen = { path = "../sourcegen" }
39 xshell = "0.2.2"
40 expect-test = "1.4.0"