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 = [
13    "tree-sitter"
14]
15load-grammars = [
16    "tree-sitter-bash",
17    "tree-sitter-c",
18    "tree-sitter-cpp",
19    "tree-sitter-css",
20    "tree-sitter-diff",
21    "tree-sitter-go",
22    "tree-sitter-go-mod",
23    "tree-sitter-gowork",
24    "tree-sitter-jsdoc",
25    "tree-sitter-json",
26    "tree-sitter-md",
27    "tree-sitter-python",
28    "tree-sitter-regex",
29    "tree-sitter-rust",
30    "tree-sitter-typescript",
31    "tree-sitter-yaml",
32    "tree-sitter"
33]
34
35[dependencies]
36anyhow.workspace = true
37async-compression.workspace = true
38async-tar.workspace = true
39async-trait.workspace = true
40collections.workspace = true
41feature_flags.workspace = true
42futures.workspace = true
43gpui.workspace = true
44http_client.workspace = true
45language.workspace = true
46log.workspace = true
47lsp.workspace = true
48node_runtime.workspace = true
49paths.workspace = true
50project.workspace = true
51regex.workspace = true
52rope.workspace = true
53rust-embed.workspace = true
54serde.workspace = true
55serde_json.workspace = true
56settings.workspace = true
57smol.workspace = true
58task.workspace = true
59toml.workspace = true
60tree-sitter = { workspace = true, optional = true }
61tree-sitter-bash = { workspace = true, optional = true }
62tree-sitter-c = { workspace = true, optional = true }
63tree-sitter-cpp = { workspace = true, optional = true }
64tree-sitter-css = { workspace = true, optional = true }
65tree-sitter-diff = { workspace = true, optional = true }
66tree-sitter-go = { workspace = true, optional = true }
67tree-sitter-go-mod = { workspace = true, optional = true }
68tree-sitter-gowork = { workspace = true, optional = true }
69tree-sitter-jsdoc = { workspace = true, optional = true }
70tree-sitter-json = { workspace = true, optional = true }
71tree-sitter-md = { workspace = true, optional = true }
72tree-sitter-python = { workspace = true, optional = true }
73tree-sitter-regex = { workspace = true, optional = true }
74tree-sitter-rust = { workspace = true, optional = true }
75tree-sitter-typescript = { workspace = true, optional = true }
76tree-sitter-yaml = { workspace = true, optional = true }
77util.workspace = true
78
79[dev-dependencies]
80tree-sitter.workspace = true
81text.workspace = true
82theme = { workspace = true, features = ["test-support"] }
83unindent.workspace = true
84workspace = { workspace = true, features = ["test-support"] }