Cargo.toml

 1[package]
 2name = "lsp_log"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/lsp_log.rs"
 9doctest = false
10
11[dependencies]
12collections = { path = "../collections" }
13editor = { path = "../editor" }
14settings = { path = "../settings" }
15theme = { path = "../theme" }
16language = { path = "../language" }
17project = { path = "../project" }
18workspace = { path = "../workspace" }
19gpui = { path = "../gpui" }
20util = { path = "../util" }
21lsp = { path = "../lsp" }
22futures.workspace = true
23serde.workspace = true
24anyhow.workspace = true
25
26[dev-dependencies]
27gpui = { path = "../gpui", features = ["test-support"] }
28util = { path = "../util", features = ["test-support"] }
29unindent.workspace = true