Cargo.toml

 1[package]
 2name = "diagnostics"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/diagnostics.rs"
 8doctest = false
 9
10[dependencies]
11anyhow = "1.0"
12smallvec = { version = "1.6", features = ["union"] }
13collections = { path = "../collections" }
14editor = { path = "../editor" }
15language = { path = "../language" }
16gpui = { path = "../gpui" }
17project = { path = "../project" }
18settings = { path = "../settings" }
19theme = { path = "../theme" }
20util = { path = "../util" }
21workspace = { path = "../workspace" }
22postage = { version = "0.4", features = ["futures-traits"] }
23
24[dev-dependencies]
25unindent = "0.1"
26client = { path = "../client", features = ["test-support"] }
27editor = { path = "../editor", features = ["test-support"] }
28language = { path = "../language", features = ["test-support"] }
29gpui = { path = "../gpui", features = ["test-support"] }
30workspace = { path = "../workspace", features = ["test-support"] }
31serde_json = { version = "1", features = ["preserve_order"] }