rust-analyzer/crates/ide_completion/Cargo.toml

35 lines
902 B
TOML
Raw Normal View History

[package]
name = "ide_completion"
version = "0.0.0"
description = "TBD"
license = "MIT OR Apache-2.0"
2021-10-21 15:49:28 +00:00
edition = "2021"
2021-12-15 20:49:48 +00:00
rust-version = "1.57"
[lib]
doctest = false
[dependencies]
2021-06-12 20:39:57 +00:00
cov-mark = "2.0.0-pre.1"
2020-12-30 15:39:50 +00:00
itertools = "0.10.0"
rustc-hash = "1.1.0"
2020-09-18 20:40:11 +00:00
either = "1.6.1"
2021-05-27 21:28:14 +00:00
once_cell = "1.7"
smallvec = "1.4"
stdx = { path = "../stdx", version = "0.0.0" }
syntax = { path = "../syntax", version = "0.0.0" }
text_edit = { path = "../text_edit", version = "0.0.0" }
base_db = { path = "../base_db", version = "0.0.0" }
ide_db = { path = "../ide_db", version = "0.0.0" }
profile = { path = "../profile", version = "0.0.0" }
# completions crate should depend only on the top-level `hir` package. if you need
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
hir = { path = "../hir", version = "0.0.0" }
[dev-dependencies]
2021-10-09 14:17:16 +00:00
expect-test = "1.2.0-pre.1"
test_utils = { path = "../test_utils" }