mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 15:14:32 +00:00
37 lines
642 B
TOML
37 lines
642 B
TOML
[package]
|
|
name = "ide-assists"
|
|
version = "0.0.0"
|
|
description = "Code assists 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
|
|
either.workspace = true
|
|
smallvec.workspace = true
|
|
tracing.workspace = true
|
|
|
|
# local deps
|
|
stdx.workspace = true
|
|
syntax.workspace = true
|
|
text-edit.workspace = true
|
|
ide-db.workspace = true
|
|
hir.workspace = true
|
|
|
|
[dev-dependencies]
|
|
expect-test = "1.4.0"
|
|
|
|
# local deps
|
|
test-utils.workspace = true
|
|
test-fixture.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|