2021-10-04 14:50:12 +00:00
|
|
|
[package]
|
|
|
|
name = "buffer"
|
|
|
|
version = "0.1.0"
|
2021-10-29 16:31:21 +00:00
|
|
|
edition = "2021"
|
2021-10-04 14:50:12 +00:00
|
|
|
|
|
|
|
[features]
|
2021-10-21 07:40:50 +00:00
|
|
|
test-support = ["rand", "seahash"]
|
2021-10-04 14:50:12 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clock = { path = "../clock" }
|
2021-10-04 22:36:52 +00:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
|
|
|
anyhow = "1.0.38"
|
|
|
|
arrayvec = "0.7.1"
|
2021-10-04 14:50:12 +00:00
|
|
|
log = "0.4"
|
|
|
|
rand = { version = "0.8.3", optional = true }
|
2021-10-21 07:40:50 +00:00
|
|
|
seahash = { version = "4.1", optional = true }
|
2021-10-04 14:50:12 +00:00
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-10-05 21:18:04 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-10-21 07:40:50 +00:00
|
|
|
seahash = "4.1"
|
2021-10-04 14:50:12 +00:00
|
|
|
rand = "0.8.3"
|