1[package]
2name = "diagnostics2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/diagnostics.rs"
9doctest = false
10
11[dependencies]
12collections = { path = "../collections" }
13editor = { package = "editor2", path = "../editor2" }
14gpui = { package = "gpui2", path = "../gpui2" }
15ui = { package = "ui2", path = "../ui2" }
16language = { package = "language2", path = "../language2" }
17lsp = { package = "lsp2", path = "../lsp2" }
18project = { package = "project2", path = "../project2" }
19settings = { package = "settings2", path = "../settings2" }
20theme = { package = "theme2", path = "../theme2" }
21util = { path = "../util" }
22workspace = { package = "workspace2", path = "../workspace2" }
23
24log.workspace = true
25anyhow.workspace = true
26futures.workspace = true
27schemars.workspace = true
28serde.workspace = true
29serde_derive.workspace = true
30smallvec.workspace = true
31postage.workspace = true
32
33[dev-dependencies]
34client = { package = "client2", path = "../client2", features = ["test-support"] }
35editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
36language = { package = "language2", path = "../language2", features = ["test-support"] }
37lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }
38gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
39workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
40theme = { package = "theme2", path = "../theme2", features = ["test-support"] }
41
42serde_json.workspace = true
43unindent.workspace = true