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