Cargo.toml

 1[package]
 2name = "language"
 3version = "0.1.0"
 4edition = "2018"
 5
 6[features]
 7test-support = ["rand"]
 8
 9[dependencies]
10buffer = { path = "../buffer" }
11clock = { path = "../clock" }
12gpui = { path = "../gpui" }
13rpc = { path = "../rpc" }
14sum_tree = { path = "../sum_tree" }
15theme = { path = "../theme" }
16anyhow = "1.0.38"
17arrayvec = "0.7.1"
18lazy_static = "1.4"
19log = "0.4"
20parking_lot = "0.11.1"
21rand = { version = "0.8.3", optional = true }
22seahash = "4.1"
23serde = { version = "1", features = ["derive"] }
24similar = "1.3"
25smallvec = { version = "1.6", features = ["union"] }
26smol = "1.2"
27tree-sitter = "0.19.5"
28
29[dev-dependencies]
30buffer = { path = "../buffer", features = ["test-support"] }
31gpui = { path = "../gpui", features = ["test-support"] }
32
33rand = "0.8.3"
34tree-sitter-rust = "0.19.0"
35unindent = "0.1.7"