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