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