2021-12-13 18:46:35 +03:00
|
|
|
[package]
|
|
|
|
name = "diagnostics"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2021-12-13 18:46:35 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/diagnostics.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-12-13 18:46:35 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-12-14 04:44:20 +03:00
|
|
|
collections = { path = "../collections" }
|
2021-12-13 18:46:35 +03:00
|
|
|
editor = { path = "../editor" }
|
2023-04-25 03:41:55 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2021-12-14 04:44:20 +03:00
|
|
|
language = { path = "../language" }
|
2023-04-20 03:37:28 +03:00
|
|
|
lsp = { path = "../lsp" }
|
2021-12-13 18:46:35 +03:00
|
|
|
project = { path = "../project" }
|
2022-04-06 03:10:17 +03:00
|
|
|
settings = { path = "../settings" }
|
2022-01-12 04:23:11 +03:00
|
|
|
theme = { path = "../theme" }
|
2021-12-22 03:39:23 +03:00
|
|
|
util = { path = "../util" }
|
2021-12-13 18:46:35 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2023-04-25 03:41:55 +03:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
smallvec.workspace = true
|
|
|
|
postage.workspace = true
|
2021-12-17 05:09:12 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-12-22 03:39:23 +03:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2021-12-17 05:09:12 +03:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2023-04-20 03:37:28 +03:00
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2021-12-17 05:09:12 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2023-05-18 00:44:55 +03:00
|
|
|
theme = { path = "../theme", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
unindent.workspace = true
|