2021-12-13 15:46:35 +00:00
|
|
|
[package]
|
|
|
|
name = "diagnostics"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[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
|
|
|
anyhow = "1.0"
|
|
|
|
collections = { path = "../collections" }
|
2021-12-13 15:46:35 +00:00
|
|
|
editor = { path = "../editor" }
|
2021-12-14 01:44:20 +00:00
|
|
|
language = { path = "../language" }
|
2021-12-13 15:46:35 +00:00
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
project = { path = "../project" }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2022-01-12 01:23:11 +00:00
|
|
|
theme = { path = "../theme" }
|
2021-12-22 00:39:23 +00:00
|
|
|
util = { path = "../util" }
|
2021-12-13 15:46:35 +00:00
|
|
|
workspace = { path = "../workspace" }
|
|
|
|
postage = { version = "0.4", features = ["futures-traits"] }
|
2021-12-17 02:09:12 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
unindent = "0.1"
|
2021-12-22 00:39:23 +00:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2021-12-17 02:09:12 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2021-12-22 00:39:23 +00:00
|
|
|
serde_json = { version = "1", features = ["preserve_order"] }
|