Cargo.toml

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