]> git.lizzy.rs Git - rust.git/blob - crates/ide_completion/Cargo.toml
Merge #10048
[rust.git] / crates / ide_completion / Cargo.toml
1 [package]
2 name = "ide_completion"
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 itertools = "0.10.0"
14 rustc-hash = "1.1.0"
15 either = "1.6.1"
16 once_cell = "1.7"
17
18 stdx = { path = "../stdx", version = "0.0.0" }
19 syntax = { path = "../syntax", version = "0.0.0" }
20 text_edit = { path = "../text_edit", version = "0.0.0" }
21 base_db = { path = "../base_db", version = "0.0.0" }
22 ide_db = { path = "../ide_db", version = "0.0.0" }
23 profile = { path = "../profile", version = "0.0.0" }
24
25 # completions crate should depend only on the top-level `hir` package. if you need
26 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
27 hir = { path = "../hir", version = "0.0.0" }
28
29 [dev-dependencies]
30 expect-test = "1.1"
31 xshell = "0.1"
32
33 test_utils = { path = "../test_utils" }
34 sourcegen = { path = "../sourcegen" }