2024-02-23 14:56:08 +00:00
|
|
|
[package]
|
|
|
|
name = "languages"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2024-05-26 10:50:20 +00:00
|
|
|
[features]
|
|
|
|
test-support = []
|
2024-09-25 22:29:04 +00:00
|
|
|
load-grammars = [
|
|
|
|
"tree-sitter-bash",
|
|
|
|
"tree-sitter-c",
|
|
|
|
"tree-sitter-cpp",
|
|
|
|
"tree-sitter-css",
|
|
|
|
"tree-sitter-go",
|
|
|
|
"tree-sitter-go-mod",
|
|
|
|
"tree-sitter-gowork",
|
|
|
|
"tree-sitter-jsdoc",
|
|
|
|
"tree-sitter-json",
|
|
|
|
"tree-sitter-md",
|
|
|
|
"tree-sitter-python",
|
|
|
|
"tree-sitter-regex",
|
|
|
|
"tree-sitter-rust",
|
|
|
|
"tree-sitter-typescript",
|
|
|
|
"tree-sitter-yaml",
|
|
|
|
"tree-sitter"
|
|
|
|
]
|
2024-05-26 10:50:20 +00:00
|
|
|
|
2024-02-23 14:56:08 +00:00
|
|
|
[dependencies]
|
|
|
|
anyhow.workspace = true
|
2024-02-25 17:02:59 +00:00
|
|
|
async-compression.workspace = true
|
|
|
|
async-tar.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
collections.workspace = true
|
|
|
|
feature_flags.workspace = true
|
|
|
|
futures.workspace = true
|
2024-02-23 14:56:08 +00:00
|
|
|
gpui.workspace = true
|
2024-07-23 22:01:05 +00:00
|
|
|
http_client.workspace = true
|
2024-02-23 14:56:08 +00:00
|
|
|
language.workspace = true
|
2024-02-25 17:02:59 +00:00
|
|
|
log.workspace = true
|
|
|
|
lsp.workspace = true
|
2024-02-23 14:56:08 +00:00
|
|
|
node_runtime.workspace = true
|
2024-06-17 23:27:42 +00:00
|
|
|
paths.workspace = true
|
2024-02-25 17:02:59 +00:00
|
|
|
project.workspace = true
|
|
|
|
regex.workspace = true
|
|
|
|
rope.workspace = true
|
2024-05-11 08:10:13 +00:00
|
|
|
rust-embed.workspace = true
|
2024-02-25 17:02:59 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-23 14:56:08 +00:00
|
|
|
settings.workspace = true
|
2024-02-25 17:02:59 +00:00
|
|
|
smol.workspace = true
|
|
|
|
task.workspace = true
|
|
|
|
toml.workspace = true
|
2024-10-02 14:38:23 +00:00
|
|
|
tree-sitter = { workspace = true, optional = true }
|
|
|
|
tree-sitter-bash = { workspace = true, optional = true }
|
|
|
|
tree-sitter-c = { workspace = true, optional = true }
|
|
|
|
tree-sitter-cpp = { workspace = true, optional = true }
|
|
|
|
tree-sitter-css = { workspace = true, optional = true }
|
|
|
|
tree-sitter-go = { workspace = true, optional = true }
|
|
|
|
tree-sitter-go-mod = { workspace = true, optional = true }
|
|
|
|
tree-sitter-gowork = { workspace = true, optional = true }
|
|
|
|
tree-sitter-jsdoc = { workspace = true, optional = true }
|
|
|
|
tree-sitter-json = { workspace = true, optional = true }
|
|
|
|
tree-sitter-md = { workspace = true, optional = true }
|
|
|
|
tree-sitter-python = { workspace = true, optional = true }
|
|
|
|
tree-sitter-regex = { workspace = true, optional = true }
|
|
|
|
tree-sitter-rust = { workspace = true, optional = true }
|
|
|
|
tree-sitter-typescript = { workspace = true, optional = true }
|
|
|
|
tree-sitter-yaml = { workspace = true, optional = true }
|
2024-02-23 14:56:08 +00:00
|
|
|
util.workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
text.workspace = true
|
2024-07-15 12:26:39 +00:00
|
|
|
theme = { workspace = true, features = ["test-support"] }
|
2024-02-23 14:56:08 +00:00
|
|
|
unindent.workspace = true
|
2024-03-15 00:31:52 +00:00
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|