rust-analyzer/crates/ide-completion/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
868 B
TOML
Raw Normal View History

[package]
2022-04-29 14:29:24 +00:00
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]
2021-06-12 20:39:57 +00:00
cov-mark = "2.0.0-pre.1"
2023-11-15 10:53:56 +00:00
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
2022-04-29 14:29:24 +00:00
# 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