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