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