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]
12anyhow = "1.0"
13smallvec = { workspace = true }
14collections = { path = "../collections" }
15editor = { path = "../editor" }
16language = { path = "../language" }
17lsp = { path = "../lsp" }
18gpui = { path = "../gpui" }
19project = { path = "../project" }
20settings = { path = "../settings" }
21theme = { path = "../theme" }
22util = { path = "../util" }
23workspace = { path = "../workspace" }
24postage = { workspace = true }
25
26[dev-dependencies]
27unindent = "0.1"
28client = { path = "../client", features = ["test-support"] }
29editor = { path = "../editor", features = ["test-support"] }
30language = { path = "../language", features = ["test-support"] }
31lsp = { path = "../lsp", features = ["test-support"] }
32gpui = { path = "../gpui", features = ["test-support"] }
33workspace = { path = "../workspace", features = ["test-support"] }
34serde_json = { workspace = true }