Cargo.toml

 1[package]
 2name = "buffer"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[features]
 7test-support = ["rand"]
 8
 9[dependencies]
10clock = { path = "../clock" }
11collections = { path = "../collections" }
12sum_tree = { path = "../sum_tree" }
13anyhow = "1.0.38"
14arrayvec = "0.7.1"
15log = "0.4"
16rand = { version = "0.8.3", optional = true }
17smallvec = { version = "1.6", features = ["union"] }
18
19[dev-dependencies]
20collections = { path = "../collections", features = ["test-support"] }
21gpui = { path = "../gpui", features = ["test-support"] }
22rand = "0.8.3"