]> git.lizzy.rs Git - rust.git/blob - crates/ide_completion/Cargo.toml
Merge #7956
[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 authors = ["rust-analyzer developers"]
7 edition = "2018"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 cov-mark = "1.1"
14 itertools = "0.10.0"
15 log = "0.4.8"
16 rustc-hash = "1.1.0"
17 either = "1.6.1"
18
19 stdx = { path = "../stdx", version = "0.0.0" }
20 syntax = { path = "../syntax", version = "0.0.0" }
21 text_edit = { path = "../text_edit", version = "0.0.0" }
22 base_db = { path = "../base_db", version = "0.0.0" }
23 ide_db = { path = "../ide_db", version = "0.0.0" }
24 profile = { path = "../profile", version = "0.0.0" }
25
26 # completions crate should depend only on the top-level `hir` package. if you need
27 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
28 hir = { path = "../hir", version = "0.0.0" }
29
30 [dev-dependencies]
31 test_utils = { path = "../test_utils" }
32 expect-test = "1.1"