Cargo.toml

 1[package]
 2name = "language_tools"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/language_tools.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" }
20ui = { path = "../ui" }
21util = { path = "../util" }
22lsp = { path = "../lsp" }
23futures.workspace = true
24serde.workspace = true
25anyhow.workspace = true
26tree-sitter.workspace = true
27serde_json.workspace = true
28
29[dev-dependencies]
30client = { path = "../client", features = ["test-support"] }
31editor = { path = "../editor", features = ["test-support"] }
32gpui = { path = "../gpui", features = ["test-support"] }
33util = { path = "../util", features = ["test-support"] }
34env_logger.workspace = true
35unindent.workspace = true