1[package]
2name = "diagnostics"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lib]
9path = "src/diagnostics.rs"
10doctest = false
11
12[dependencies]
13anyhow.workspace = true
14collections = { path = "../collections" }
15editor = { path = "../editor" }
16futures.workspace = true
17gpui = { path = "../gpui" }
18language = { path = "../language" }
19log.workspace = true
20lsp = { path = "../lsp" }
21postage.workspace = true
22project = { path = "../project" }
23schemars.workspace = true
24serde.workspace = true
25serde_derive.workspace = true
26settings = { path = "../settings" }
27smallvec.workspace = true
28theme = { path = "../theme" }
29ui = { path = "../ui" }
30util = { path = "../util" }
31workspace = { path = "../workspace" }
32
33[dev-dependencies]
34client = { path = "../client", features = ["test-support"] }
35editor = { path = "../editor", features = ["test-support"] }
36gpui = { path = "../gpui", features = ["test-support"] }
37language = { path = "../language", features = ["test-support"] }
38lsp = { path = "../lsp", features = ["test-support"] }
39serde_json.workspace = true
40theme = { path = "../theme", features = ["test-support"] }
41unindent.workspace = true
42workspace = { path = "../workspace", features = ["test-support"] }