Cargo.toml

 1[package]
 2name = "lsp_status"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/lsp_status.rs"
 8doctest = false
 9
10[dependencies]
11editor = { path = "../editor" }
12language = { path = "../language" }
13gpui = { path = "../gpui" }
14project = { path = "../project" }
15settings = { path = "../settings" }
16util = { path = "../util" }
17workspace = { path = "../workspace" }
18futures = "0.3"
19smallvec = { version = "1.6", features = ["union"] }