2023-04-21 00:56:22 +00:00
|
|
|
[package]
|
2023-06-09 21:55:46 +00:00
|
|
|
name = "language_tools"
|
2023-04-21 00:56:22 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-04-21 00:56:22 +00:00
|
|
|
[lib]
|
2023-06-09 21:55:46 +00:00
|
|
|
path = "src/language_tools.rs"
|
2023-04-21 00:56:22 +00:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
2024-05-03 19:50:42 +00:00
|
|
|
copilot.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
editor.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
|
|
|
lsp.workspace = true
|
|
|
|
project.workspace = true
|
2024-01-07 13:14:21 +00:00
|
|
|
serde_json.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
|
|
|
theme.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
tree-sitter.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
ui.workspace = true
|
|
|
|
workspace.workspace = true
|
2023-04-21 00:56:22 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
client = { workspace = true, features = ["test-support"] }
|
|
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
|
|
release_channel.workspace = true
|
2023-06-07 23:55:29 +00:00
|
|
|
env_logger.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
util = { workspace = true, features = ["test-support"] }
|