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