Cargo.toml

 1[package]
 2name = "language_tools"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/language_tools.rs"
10doctest = false
11
12[dependencies]
13anyhow.workspace = true
14collections = { path = "../collections" }
15editor = { path = "../editor" }
16futures.workspace = true
17gpui = { path = "../gpui" }
18language = { path = "../language" }
19lsp = { path = "../lsp" }
20project = { path = "../project" }
21serde.workspace = true
22serde_json.workspace = true
23settings = { path = "../settings" }
24theme = { path = "../theme" }
25tree-sitter.workspace = true
26ui = { path = "../ui" }
27util = { path = "../util" }
28workspace = { path = "../workspace" }
29
30[dev-dependencies]
31client = { path = "../client", features = ["test-support"] }
32editor = { path = "../editor", features = ["test-support"] }
33env_logger.workspace = true
34gpui = { path = "../gpui", features = ["test-support"] }
35unindent.workspace = true
36util = { path = "../util", features = ["test-support"] }