]> git.lizzy.rs Git - rust.git/blob - src/tools/rust-analyzer/crates/ide-diagnostics/Cargo.toml
Rollup merge of #101175 - tmandry:curse-push-hook, r=jyn514
[rust.git] / src / tools / rust-analyzer / 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 serde_json = "1.0.82"
19
20 profile = { path = "../profile", version = "0.0.0" }
21 stdx = { path = "../stdx", version = "0.0.0" }
22 syntax = { path = "../syntax", version = "0.0.0" }
23 text-edit = { path = "../text-edit", version = "0.0.0" }
24 cfg = { path = "../cfg", version = "0.0.0" }
25 hir = { path = "../hir", version = "0.0.0" }
26 ide-db = { path = "../ide-db", version = "0.0.0" }
27
28 [dev-dependencies]
29 expect-test = "1.4.0"
30
31 test-utils = { path = "../test-utils" }
32 sourcegen = { path = "../sourcegen" }
33
34 [features]
35 in-rust-tree = []