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" }
14theme = { path = "../theme" }
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"] }
25smol = "1.2"
26tree-sitter = "0.19.5"
27
28[dev-dependencies]
29gpui = { path = "../gpui", features = ["test-support"] }
30
31rand = "0.8.3"
32tree-sitter-rust = "0.19.0"
33unindent = "0.1.7"