Cargo.toml

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