]> git.lizzy.rs Git - rust.git/blob - crates/ide_completion/Cargo.toml
e088e3815aa99e80cbfae0811602b825be1cf6f9
[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 = "2021"
7 rust-version = "1.57"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 cov-mark = "2.0.0-pre.1"
14 itertools = "0.10.3"
15 rustc-hash = "1.1.0"
16 either = "1.6.1"
17 once_cell = "1.10.0"
18 smallvec = "1.8.0"
19
20 stdx = { path = "../stdx", version = "0.0.0" }
21 syntax = { path = "../syntax", version = "0.0.0" }
22 text_edit = { path = "../text_edit", version = "0.0.0" }
23 base_db = { path = "../base_db", version = "0.0.0" }
24 ide_db = { path = "../ide_db", version = "0.0.0" }
25 profile = { path = "../profile", version = "0.0.0" }
26
27 # completions crate 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
31 [dev-dependencies]
32 expect-test = "1.2.2"
33
34 test_utils = { path = "../test_utils" }