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    "client/test-support",
13    "collections/test-support",
14    "lsp/test-support",
15    "text/test-support",
16    "tree-sitter-rust",
17    "util/test-support",
18]
19
20[dependencies]
21client = { path = "../client" }
22clock = { path = "../clock" }
23collections = { path = "../collections" }
24fuzzy = { path = "../fuzzy" }
25gpui = { path = "../gpui" }
26lsp = { path = "../lsp" }
27rpc = { path = "../rpc" }
28sum_tree = { path = "../sum_tree" }
29text = { path = "../text" }
30theme = { path = "../theme" }
31util = { path = "../util" }
32anyhow = "1.0.38"
33async-broadcast = "0.3.4"
34async-trait = "0.1"
35futures = "0.3"
36lazy_static = "1.4"
37log = "0.4"
38parking_lot = "0.11.1"
39postage = { version = "0.4.1", features = ["futures-traits"] }
40rand = { version = "0.8.3", optional = true }
41serde = { version = "1", features = ["derive"] }
42serde_json = { version = "1", features = ["preserve_order"] }
43similar = "1.3"
44smallvec = { version = "1.6", features = ["union"] }
45smol = "1.2"
46tree-sitter = "0.20"
47tree-sitter-rust = { version = "0.20.0", optional = true }
48
49[dev-dependencies]
50client = { path = "../client", features = ["test-support"] }
51collections = { path = "../collections", features = ["test-support"] }
52gpui = { path = "../gpui", features = ["test-support"] }
53lsp = { path = "../lsp", features = ["test-support"] }
54text = { path = "../text", features = ["test-support"] }
55util = { path = "../util", features = ["test-support"] }
56ctor = "0.1"
57env_logger = "0.8"
58rand = "0.8.3"
59tree-sitter-rust = "0.20.0"
60unindent = "0.1.7"