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