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
27
28[dev-dependencies]
29client = { path = "../client", features = ["test-support"] }
30editor = { path = "../editor", features = ["test-support"] }
31gpui = { path = "../gpui", features = ["test-support"] }
32util = { path = "../util", features = ["test-support"] }
33env_logger.workspace = true
34unindent.workspace = true