Cargo.toml

 1[package]
 2name = "languages"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lints]
 9workspace = true
10
11[features]
12test-support = []
13load-grammars = [
14    "tree-sitter-bash",
15    "tree-sitter-c",
16    "tree-sitter-cpp",
17    "tree-sitter-css",
18    "tree-sitter-go",
19    "tree-sitter-go-mod",
20    "tree-sitter-gowork",
21    "tree-sitter-jsdoc",
22    "tree-sitter-json",
23    "tree-sitter-md",
24    "protols-tree-sitter-proto",
25    "tree-sitter-python",
26    "tree-sitter-regex",
27    "tree-sitter-rust",
28    "tree-sitter-typescript",
29    "tree-sitter-yaml",
30    "tree-sitter"
31]
32
33[dependencies]
34anyhow.workspace = true
35async-compression.workspace = true
36async-tar.workspace = true
37async-trait.workspace = true
38collections.workspace = true
39feature_flags.workspace = true
40futures.workspace = true
41gpui.workspace = true
42http_client.workspace = true
43language.workspace = true
44log.workspace = true
45lsp.workspace = true
46node_runtime.workspace = true
47paths.workspace = true
48project.workspace = true
49regex.workspace = true
50rope.workspace = true
51rust-embed.workspace = true
52serde.workspace = true
53serde_json.workspace = true
54settings.workspace = true
55smol.workspace = true
56task.workspace = true
57toml.workspace = true
58util.workspace = true
59
60tree-sitter-bash = {workspace = true, optional = true}
61tree-sitter-c = {workspace = true, optional = true}
62tree-sitter-cpp = {workspace = true, optional = true}
63tree-sitter-css = {workspace = true, optional = true}
64tree-sitter-go = {workspace = true, optional = true}
65tree-sitter-go-mod = {workspace = true, optional = true}
66tree-sitter-gowork = {workspace = true, optional = true}
67tree-sitter-jsdoc = {workspace = true, optional = true}
68tree-sitter-json = {workspace = true, optional = true}
69tree-sitter-md = {workspace = true, optional = true}
70protols-tree-sitter-proto = {workspace = true, optional = true}
71tree-sitter-python = {workspace = true, optional = true}
72tree-sitter-regex = {workspace = true, optional = true}
73tree-sitter-rust = {workspace = true, optional = true}
74tree-sitter-typescript = {workspace = true, optional = true}
75tree-sitter-yaml = {workspace = true, optional = true}
76tree-sitter = {workspace = true, optional = true}
77
78[dev-dependencies]
79text.workspace = true
80theme = { workspace = true, features = ["test-support"] }
81unindent.workspace = true
82workspace = { workspace = true, features = ["test-support"] }