mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 07:04:22 +00:00
955e609867
This doesn't get rid of the once_cell dependency, unfortunately, since we have dependencies that use it, but it's a nice to do cleanup. And when our deps will eventually get rid of once_cell we will get rid of it for free.
41 lines
868 B
TOML
41 lines
868 B
TOML
[package]
|
|
name = "ide-completion"
|
|
version = "0.0.0"
|
|
repository.workspace = true
|
|
description = "Utilities for generating completions of user input for rust-analyzer."
|
|
|
|
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.workspace = true
|
|
tracing.workspace = true
|
|
|
|
smallvec.workspace = true
|
|
|
|
|
|
# local deps
|
|
base-db.workspace = true
|
|
ide-db.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
|
|
test-fixture.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|