rust/crates/ide_diagnostics/Cargo.toml

31 lines
742 B
TOML
Raw Normal View History

2021-06-14 04:24:58 -05:00
[package]
name = "ide_diagnostics"
version = "0.0.0"
description = "TBD"
license = "MIT OR Apache-2.0"
2021-10-21 10:49:28 -05:00
edition = "2021"
2021-10-23 07:07:11 -05:00
rust-version = "1.56"
2021-06-14 04:24:58 -05:00
[lib]
doctest = false
[dependencies]
cov-mark = "2.0.0-pre.1"
itertools = "0.10.0"
rustc-hash = "1.1.0"
either = "1.5.3"
profile = { path = "../profile", version = "0.0.0" }
stdx = { path = "../stdx", version = "0.0.0" }
syntax = { path = "../syntax", version = "0.0.0" }
text_edit = { path = "../text_edit", version = "0.0.0" }
cfg = { path = "../cfg", version = "0.0.0" }
hir = { path = "../hir", version = "0.0.0" }
ide_db = { path = "../ide_db", version = "0.0.0" }
[dev-dependencies]
2021-10-09 09:17:16 -05:00
expect-test = "1.2.0-pre.1"
test_utils = { path = "../test_utils" }
sourcegen = { path = "../sourcegen" }