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" }
15language = { path = "../language" }
16lsp = { path = "../lsp" }
17project = { path = "../project" }
18settings = { path = "../settings" }
19theme = { path = "../theme" }
20util = { path = "../util" }
21workspace = { path = "../workspace" }
22
23log.workspace = true
24anyhow.workspace = true
25futures.workspace = true
26schemars.workspace = true
27serde.workspace = true
28serde_derive.workspace = true
29smallvec.workspace = true
30postage.workspace = true
31
32[dev-dependencies]
33client = { path = "../client", features = ["test-support"] }
34editor = { path = "../editor", features = ["test-support"] }
35language = { path = "../language", features = ["test-support"] }
36lsp = { path = "../lsp", features = ["test-support"] }
37gpui = { path = "../gpui", features = ["test-support"] }
38workspace = { path = "../workspace", features = ["test-support"] }
39theme = { path = "../theme", features = ["test-support"] }
40
41serde_json.workspace = true
42unindent.workspace = true