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