]> git.lizzy.rs Git - rust.git/blob - crates/ide-diagnostics/Cargo.toml
Auto merge of #12880 - palango:while-fixup, r=Veykril
[rust.git] / crates / ide-diagnostics / Cargo.toml
1 [package]
2 name = "ide-diagnostics"
3 version = "0.0.0"
4 description = "TBD"
5 license = "MIT OR Apache-2.0"
6 edition = "2021"
7 rust-version = "1.57"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 cov-mark = "2.0.0-pre.1"
14 itertools = "0.10.3"
15
16
17 either = "1.7.0"
18
19 profile = { path = "../profile", version = "0.0.0" }
20 stdx = { path = "../stdx", version = "0.0.0" }
21 syntax = { path = "../syntax", version = "0.0.0" }
22 text-edit = { path = "../text-edit", version = "0.0.0" }
23 cfg = { path = "../cfg", version = "0.0.0" }
24 hir = { path = "../hir", version = "0.0.0" }
25 ide-db = { path = "../ide-db", version = "0.0.0" }
26
27 [dev-dependencies]
28 expect-test = "1.4.0"
29
30 test-utils = { path = "../test-utils" }
31 sourcegen = { path = "../sourcegen" }
32
33 [features]
34 in-rust-tree = []