Cargo.toml

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