Cargo.toml

 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
25schemars.workspace = true
26serde.workspace = true
27serde_derive.workspace = true
28smallvec.workspace = true
29postage.workspace = true
30
31[dev-dependencies]
32client = { path = "../client", features = ["test-support"] }
33editor = { path = "../editor", features = ["test-support"] }
34language = { path = "../language", features = ["test-support"] }
35lsp = { path = "../lsp", features = ["test-support"] }
36gpui = { path = "../gpui", features = ["test-support"] }
37workspace = { path = "../workspace", features = ["test-support"] }
38theme = { path = "../theme", features = ["test-support"] }
39
40serde_json.workspace = true
41unindent.workspace = true