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]
13collections = { path = "../collections" }
14editor = { path = "../editor" }
15settings = { path = "../settings" }
16theme = { path = "../theme" }
17language = { path = "../language" }
18project = { path = "../project" }
19workspace = { path = "../workspace" }
20gpui = { path = "../gpui" }
21ui = { path = "../ui" }
22util = { path = "../util" }
23lsp = { path = "../lsp" }
24futures.workspace = true
25serde.workspace = true
26anyhow.workspace = true
27tree-sitter.workspace = true
28serde_json.workspace = true
29
30[dev-dependencies]
31client = { path = "../client", features = ["test-support"] }
32editor = { path = "../editor", features = ["test-support"] }
33gpui = { path = "../gpui", features = ["test-support"] }
34util = { path = "../util", features = ["test-support"] }
35env_logger.workspace = true
36unindent.workspace = true