zed/crates/buffer/Cargo.toml

24 lines
519 B
TOML
Raw Normal View History

2021-10-04 17:50:12 +03:00
[package]
name = "buffer"
version = "0.1.0"
edition = "2018"
[features]
test-support = ["rand", "seahash"]
2021-10-04 17:50:12 +03:00
[dependencies]
clock = { path = "../clock" }
rpc = { path = "../rpc" }
sum_tree = { path = "../sum_tree" }
anyhow = "1.0.38"
arrayvec = "0.7.1"
2021-10-04 17:50:12 +03:00
log = "0.4"
rand = { version = "0.8.3", optional = true }
seahash = { version = "4.1", optional = true }
2021-10-04 17:50:12 +03:00
smallvec = { version = "1.6", features = ["union"] }
[dev-dependencies]
gpui = { path = "../gpui", features = ["test-support"] }
seahash = "4.1"
2021-10-04 17:50:12 +03:00
rand = "0.8.3"