1[package]
2name = "language2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/language2.rs"
9doctest = false
10
11[features]
12test-support = [
13 "rand",
14 "client/test-support",
15 "collections/test-support",
16 "lsp/test-support",
17 "text/test-support",
18 "tree-sitter-rust",
19 "tree-sitter-typescript",
20 "settings/test-support",
21 "util/test-support",
22]
23
24[dependencies]
25clock = { path = "../clock" }
26collections = { path = "../collections" }
27fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
28git = { package = "git3", path = "../git3" }
29gpui = { package = "gpui2", path = "../gpui2" }
30lsp = { package = "lsp2", path = "../lsp2" }
31rpc = { package = "rpc2", path = "../rpc2" }
32settings = { package = "settings2", path = "../settings2" }
33sum_tree = { path = "../sum_tree" }
34text = { package = "text2", path = "../text2" }
35theme = { package = "theme2", path = "../theme2" }
36util = { path = "../util" }
37
38anyhow.workspace = true
39async-broadcast = "0.4"
40async-trait.workspace = true
41futures.workspace = true
42globset.workspace = true
43lazy_static.workspace = true
44log.workspace = true
45parking_lot.workspace = true
46postage.workspace = true
47regex.workspace = true
48schemars.workspace = true
49serde.workspace = true
50serde_derive.workspace = true
51serde_json.workspace = true
52similar = "1.3"
53smallvec.workspace = true
54smol.workspace = true
55tree-sitter.workspace = true
56unicase = "2.6"
57
58rand = { workspace = true, optional = true }
59tree-sitter-rust = { workspace = true, optional = true }
60tree-sitter-typescript = { workspace = true, optional = true }
61pulldown-cmark = { version = "0.9.2", default-features = false }
62
63[dev-dependencies]
64client = { package = "client2", path = "../client2", features = ["test-support"] }
65collections = { path = "../collections", features = ["test-support"] }
66gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
67lsp = { package = "lsp2", path = "../lsp2", features = ["test-support"] }
68text = { package = "text2", path = "../text2", features = ["test-support"] }
69settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
70util = { path = "../util", features = ["test-support"] }
71ctor.workspace = true
72env_logger.workspace = true
73indoc.workspace = true
74rand.workspace = true
75unindent.workspace = true
76
77tree-sitter-embedded-template.workspace = true
78tree-sitter-html.workspace = true
79tree-sitter-json.workspace = true
80tree-sitter-markdown.workspace = true
81tree-sitter-rust.workspace = true
82tree-sitter-python.workspace = true
83tree-sitter-typescript.workspace = true
84tree-sitter-ruby.workspace = true
85tree-sitter-elixir.workspace = true
86tree-sitter-heex.workspace = true