Cargo.toml

 1[package]
 2name = "language_tools2"
 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 = { package = "editor2", path = "../editor2" }
14settings = { package = "settings2", path = "../settings2" }
15theme = { package = "theme2", path = "../theme2" }
16language = { package = "language2", path = "../language2" }
17project = { package = "project2", path = "../project2" }
18workspace = { package = "workspace2", path = "../workspace2" }
19gpui = { package = "gpui2", path = "../gpui2" }
20ui = { package = "ui2", path = "../ui2" }
21util = { path = "../util" }
22lsp = { package = "lsp2", path = "../lsp2" }
23futures.workspace = true
24serde.workspace = true
25anyhow.workspace = true
26tree-sitter.workspace = true
27
28[dev-dependencies]
29client = { package = "client2", path = "../client2", features = ["test-support"] }
30editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
31gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
32util = { path = "../util", features = ["test-support"] }
33env_logger.workspace = true
34unindent.workspace = true