mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 13:24:19 +00:00
40c861c249
This will enable us to add operations that only pertain to the language crate. Co-Authored-By: Nathan Sobo <nathan@zed.dev>
22 lines
493 B
TOML
22 lines
493 B
TOML
[package]
|
|
name = "buffer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
test-support = ["rand", "seahash"]
|
|
|
|
[dependencies]
|
|
clock = { path = "../clock" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
anyhow = "1.0.38"
|
|
arrayvec = "0.7.1"
|
|
log = "0.4"
|
|
rand = { version = "0.8.3", optional = true }
|
|
seahash = { version = "4.1", optional = true }
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
|
|
[dev-dependencies]
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
seahash = "4.1"
|
|
rand = "0.8.3"
|