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