Cargo.toml
1[package]
2name = "diagnostics"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/diagnostics.rs"
8
9[dependencies]
10anyhow = "1.0"
11collections = { path = "../collections" }
12editor = { path = "../editor" }
13language = { path = "../language" }
14gpui = { path = "../gpui" }
15project = { path = "../project" }
16workspace = { path = "../workspace" }
17postage = { version = "0.4", features = ["futures-traits"] }