Cargo.toml

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