Cargo.toml

 1[package]
 2name = "languages"
 3version = "0.1.0"
 4edition.workspace = true
 5publish.workspace = true
 6license = "GPL-3.0-or-later"
 7
 8[lints]
 9workspace = true
10
11[features]
12test-support = [
13    "load-grammars"
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
41futures.workspace = true
42gpui.workspace = true
43http_client.workspace = true
44language.workspace = true
45log.workspace = true
46lsp.workspace = true
47node_runtime.workspace = true
48paths.workspace = true
49pet.workspace = true
50pet-fs.workspace = true
51pet-core.workspace = true
52pet-conda.workspace = true
53pet-poetry.workspace = true
54pet-reporter.workspace = true
55project.workspace = true
56regex.workspace = true
57rope.workspace = true
58rust-embed.workspace = true
59serde.workspace = true
60serde_json.workspace = true
61settings.workspace = true
62smol.workspace = true
63snippet_provider.workspace = true
64task.workspace = true
65toml.workspace = true
66tree-sitter = { workspace = true, optional = true }
67tree-sitter-bash = { workspace = true, optional = true }
68tree-sitter-c = { workspace = true, optional = true }
69tree-sitter-cpp = { workspace = true, optional = true }
70tree-sitter-css = { workspace = true, optional = true }
71tree-sitter-diff = { workspace = true, optional = true }
72tree-sitter-go = { workspace = true, optional = true }
73tree-sitter-go-mod = { workspace = true, optional = true }
74tree-sitter-gowork = { workspace = true, optional = true }
75tree-sitter-jsdoc = { workspace = true, optional = true }
76tree-sitter-json = { workspace = true, optional = true }
77tree-sitter-md = { workspace = true, optional = true }
78tree-sitter-python = { workspace = true, optional = true }
79tree-sitter-regex = { workspace = true, optional = true }
80tree-sitter-rust = { workspace = true, optional = true }
81tree-sitter-typescript = { workspace = true, optional = true }
82tree-sitter-yaml = { workspace = true, optional = true }
83util.workspace = true
84
85[dev-dependencies]
86tree-sitter.workspace = true
87text.workspace = true
88theme = { workspace = true, features = ["test-support"] }
89unindent.workspace = true
90workspace = { workspace = true, features = ["test-support"] }
91tree-sitter-typescript.workspace = true
92tree-sitter-python.workspace = true
93tree-sitter-go.workspace = true
94tree-sitter-c.workspace = true
95tree-sitter-css.workspace = true