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" }
18rope = { path = "../rope" }
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"] }