1[package]
2name = "rope"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/rope.rs"
9
10[dependencies]
11bromberg_sl2 = { git = "https://github.com/zed-industries/bromberg_sl2", rev = "950bc5482c216c395049ae33ae4501e08975f17f" }
12smallvec = { version = "1.6", features = ["union"] }
13sum_tree = { path = "../sum_tree" }
14arrayvec = "0.7.1"
15log = { version = "0.4.16", features = ["kv_unstable_serde"] }
16util = { path = "../util" }
17
18[dev-dependencies]
19rand = "0.8.3"
20util = { path = "../util", features = ["test-support"] }
21gpui = { path = "../gpui", features = ["test-support"] }