Cargo.toml

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