2020-10-18 10:09:00 +00:00
|
|
|
[package]
|
2022-04-29 14:29:24 +00:00
|
|
|
name = "ide-completion"
|
2020-10-18 10:09:00 +00:00
|
|
|
version = "0.0.0"
|
|
|
|
description = "TBD"
|
2023-01-16 15:41:47 +00:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-01-16 15:33:01 +00:00
|
|
|
rust-version.workspace = true
|
2020-10-18 10:09:00 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-06-12 20:39:57 +00:00
|
|
|
cov-mark = "2.0.0-pre.1"
|
2022-10-03 06:02:42 +00:00
|
|
|
itertools = "0.10.5"
|
2022-04-25 16:51:59 +00:00
|
|
|
|
2022-10-02 17:04:47 +00:00
|
|
|
once_cell = "1.15.0"
|
2022-10-06 12:28:50 +00:00
|
|
|
smallvec = "1.10.0"
|
2020-10-18 10:09:00 +00:00
|
|
|
|
|
|
|
|
2023-01-17 09:52:26 +00:00
|
|
|
# local deps
|
|
|
|
base-db.workspace = true
|
|
|
|
ide-db.workspace = true
|
|
|
|
profile.workspace = true
|
|
|
|
stdx.workspace = true
|
|
|
|
syntax.workspace = true
|
|
|
|
text-edit.workspace = true
|
2020-10-18 10:09:00 +00:00
|
|
|
# completions crate should depend only on the top-level `hir` package. if you need
|
2022-04-29 14:29:24 +00:00
|
|
|
# something from some `hir-xxx` subpackage, reexport the API via `hir`.
|
2023-01-17 09:52:26 +00:00
|
|
|
hir.workspace = true
|
2020-10-18 10:09:00 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-19 11:00:45 +00:00
|
|
|
expect-test = "1.4.0"
|
2021-07-03 19:11:03 +00:00
|
|
|
|
2023-01-17 09:52:26 +00:00
|
|
|
# local deps
|
|
|
|
test-utils.workspace = true
|