Cargo.toml

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