]> git.proxmox.com Git - rustc.git/blob - src/tools/rust-analyzer/crates/ide-completion/Cargo.toml
New upstream version 1.66.0+dfsg1
[rustc.git] / src / tools / rust-analyzer / 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.5"
15
16 once_cell = "1.15.0"
17 smallvec = "1.10.0"
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 expect-test = "1.4.0"
32
33 test-utils = { path = "../test-utils" }