Cargo.toml

 1[package]
 2name = "language"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/language.rs"
 8
 9[features]
10test-support = [
11    "rand",
12    "collections/test-support",
13    "lsp/test-support",
14    "text/test-support",
15    "tree-sitter-rust",
16    "util/test-support",
17]
18
19[dependencies]
20clock = { path = "../clock" }
21collections = { path = "../collections" }
22fuzzy = { path = "../fuzzy" }
23gpui = { path = "../gpui" }
24lsp = { path = "../lsp" }
25rpc = { path = "../rpc" }
26sum_tree = { path = "../sum_tree" }
27text = { path = "../text" }
28theme = { path = "../theme" }
29util = { path = "../util" }
30anyhow = "1.0.38"
31async-trait = "0.1"
32futures = "0.3"
33lazy_static = "1.4"
34log = "0.4"
35parking_lot = "0.11.1"
36postage = { version = "0.4.1", features = ["futures-traits"] }
37rand = { version = "0.8.3", optional = true }
38serde = { version = "1", features = ["derive"] }
39serde_json = { version = "1", features = ["preserve_order"] }
40similar = "1.3"
41smallvec = { version = "1.6", features = ["union"] }
42smol = "1.2"
43tree-sitter = "0.20"
44tree-sitter-rust = { version = "0.20.0", optional = true }
45
46[dev-dependencies]
47collections = { path = "../collections", features = ["test-support"] }
48gpui = { path = "../gpui", features = ["test-support"] }
49lsp = { path = "../lsp", features = ["test-support"] }
50text = { path = "../text", features = ["test-support"] }
51util = { path = "../util", features = ["test-support"] }
52ctor = "0.1"
53env_logger = "0.8"
54rand = "0.8.3"
55tree-sitter-rust = "0.20.0"
56unindent = "0.1.7"