2021-12-13 15:46:35 +00:00
|
|
|
[package]
|
|
|
|
name = "diagnostics"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2021-12-13 15:46:35 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/diagnostics.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-12-13 15:46:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-12-14 01:44:20 +00:00
|
|
|
collections = { path = "../collections" }
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 18:42:49 +00:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language" }
|
|
|
|
lsp = { path = "../lsp" }
|
2024-01-03 19:53:24 +00:00
|
|
|
project = { path = "../project" }
|
2024-01-03 18:42:49 +00:00
|
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
2021-12-22 00:39:23 +00:00
|
|
|
util = { path = "../util" }
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = {path = "../workspace" }
|
2023-04-25 00:41:55 +00:00
|
|
|
|
2023-11-03 16:33:17 +00:00
|
|
|
log.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2023-11-05 13:06:39 +00:00
|
|
|
futures.workspace = true
|
2023-09-28 00:08:08 +00:00
|
|
|
schemars.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
smallvec.workspace = true
|
|
|
|
postage.workspace = true
|
2021-12-17 02:09:12 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 20:02:14 +00:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language", features = ["test-support"] }
|
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2024-01-03 18:42:49 +00:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = {path = "../workspace", features = ["test-support"] }
|
2024-01-03 18:42:49 +00:00
|
|
|
theme = { package = "theme2", path = "../theme2", features = ["test-support"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
unindent.workspace = true
|