mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 13:33:31 +00:00
624f2ead7b
With the lack of a README on the individually published library crates and the somewhat cryptic `ra_ap_` prefix it is hard to figure out where those crates belong to, so mentioning "rust-analyzer" feels like auseful hint there.
40 lines
790 B
TOML
40 lines
790 B
TOML
[package]
|
|
name = "ide-diagnostics"
|
|
version = "0.0.0"
|
|
repository = "https://github.com/rust-lang/rust-analyzer"
|
|
description = "Diagnostics rendering and fixits 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"
|
|
either.workspace = true
|
|
itertools.workspace = true
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
once_cell = "1.17.0"
|
|
|
|
# local deps
|
|
stdx.workspace = true
|
|
syntax.workspace = true
|
|
text-edit.workspace = true
|
|
cfg.workspace = true
|
|
hir.workspace = true
|
|
ide-db.workspace = true
|
|
paths.workspace = true
|
|
|
|
[dev-dependencies]
|
|
expect-test = "1.4.0"
|
|
|
|
# local deps
|
|
test-utils.workspace = true
|
|
test-fixture.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|