2020-10-18 05:09:00 -05:00
|
|
|
[package]
|
2022-04-29 09:29:24 -05:00
|
|
|
name = "ide-completion"
|
2020-10-18 05:09:00 -05:00
|
|
|
version = "0.0.0"
|
|
|
|
description = "TBD"
|
2023-02-13 05:55:14 -06:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2020-10-18 05:09:00 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-06-12 15:39:57 -05:00
|
|
|
cov-mark = "2.0.0-pre.1"
|
2022-10-18 01:12:49 -05:00
|
|
|
itertools = "0.10.5"
|
2022-04-25 11:51:59 -05:00
|
|
|
|
2023-02-13 05:55:14 -06:00
|
|
|
once_cell = "1.17.0"
|
2023-02-20 02:14:12 -06:00
|
|
|
smallvec.workspace = true
|
2020-10-18 05:09:00 -05:00
|
|
|
|
|
|
|
|
2023-02-13 05:55:14 -06: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 05:09:00 -05:00
|
|
|
# completions crate should depend only on the top-level `hir` package. if you need
|
2022-04-29 09:29:24 -05:00
|
|
|
# something from some `hir-xxx` subpackage, reexport the API via `hir`.
|
2023-02-13 05:55:14 -06:00
|
|
|
hir.workspace = true
|
2020-10-18 05:09:00 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-19 06:00:45 -05:00
|
|
|
expect-test = "1.4.0"
|
2021-07-03 14:11:03 -05:00
|
|
|
|
2023-02-13 05:55:14 -06:00
|
|
|
# local deps
|
|
|
|
test-utils.workspace = true
|