zed/crates/rope/Cargo.toml

22 lines
592 B
TOML
Raw Normal View History

2022-10-12 01:25:54 +03:00
[package]
name = "rope"
version = "0.1.0"
edition = "2021"
publish = false
2022-10-12 01:25:54 +03:00
[lib]
path = "src/rope.rs"
[dependencies]
bromberg_sl2 = { git = "https://github.com/zed-industries/bromberg_sl2", rev = "950bc5482c216c395049ae33ae4501e08975f17f" }
2022-10-12 01:25:54 +03:00
smallvec = { version = "1.6", features = ["union"] }
sum_tree = { path = "../sum_tree" }
arrayvec = "0.7.1"
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
util = { path = "../util" }
2022-10-12 01:25:54 +03:00
[dev-dependencies]
rand = "0.8.3"
util = { path = "../util", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }