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 = { version = "1.6", features = ["union"] }
14collections = { path = "../collections" }
15editor = { path = "../editor" }
16language = { path = "../language" }
17gpui = { path = "../gpui" }
18project = { path = "../project" }
19settings = { path = "../settings" }
20theme = { path = "../theme" }
21util = { path = "../util" }
22workspace = { path = "../workspace" }
23postage = { version = "0.4", features = ["futures-traits"] }
24
25[dev-dependencies]
26unindent = "0.1"
27client = { path = "../client", features = ["test-support"] }
28editor = { path = "../editor", features = ["test-support"] }
29language = { path = "../language", features = ["test-support"] }
30gpui = { path = "../gpui", features = ["test-support"] }
31workspace = { path = "../workspace", features = ["test-support"] }
32serde_json = { version = "1", features = ["preserve_order"] }