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