mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 17:28:09 +00:00
37 lines
727 B
TOML
37 lines
727 B
TOML
[package]
|
|
name = "ide-completion"
|
|
version = "0.0.0"
|
|
description = "TBD"
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
cov-mark = "2.0.0-pre.1"
|
|
itertools = "0.10.5"
|
|
|
|
once_cell = "1.17.0"
|
|
smallvec = "1.10.0"
|
|
|
|
|
|
# local deps
|
|
base-db.workspace = true
|
|
ide-db.workspace = true
|
|
profile.workspace = true
|
|
stdx.workspace = true
|
|
syntax.workspace = true
|
|
text-edit.workspace = true
|
|
# 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.workspace = true
|
|
|
|
[dev-dependencies]
|
|
expect-test = "1.4.0"
|
|
|
|
# local deps
|
|
test-utils.workspace = true
|