2023-04-21 03:56:22 +03:00
|
|
|
[package]
|
2023-06-10 00:55:46 +03:00
|
|
|
name = "language_tools"
|
2023-04-21 03:56:22 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
2023-06-10 00:55:46 +03:00
|
|
|
path = "src/language_tools.rs"
|
2023-04-21 03:56:22 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
collections = { path = "../collections" }
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 21:52:40 +03:00
|
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
2024-01-03 22:58:02 +03:00
|
|
|
language = { path = "../language" }
|
2024-01-03 22:53:24 +03:00
|
|
|
project = { path = "../project" }
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2024-01-03 21:52:40 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
2023-04-21 03:56:22 +03:00
|
|
|
util = { path = "../util" }
|
2024-01-03 22:58:02 +03:00
|
|
|
lsp = { path = "../lsp" }
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
anyhow.workspace = true
|
2023-06-10 00:55:46 +03:00
|
|
|
tree-sitter.workspace = true
|
2023-04-21 03:56:22 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 21:52:40 +03:00
|
|
|
client = { package = "client2", path = "../client2", features = ["test-support"] }
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 21:52:40 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
2023-04-21 03:56:22 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2023-06-08 02:55:29 +03:00
|
|
|
env_logger.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
unindent.workspace = true
|