2022-10-12 01:25:54 +03:00
|
|
|
[package]
|
|
|
|
name = "rope"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2022-10-12 01:25:54 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/rope.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
arrayvec = "0.7.1"
|
2023-02-25 01:34:24 +03:00
|
|
|
bromberg_sl2 = { git = "https://github.com/zed-industries/bromberg_sl2", rev = "950bc5482c216c395049ae33ae4501e08975f17f" }
|
2024-01-31 05:41:29 +03:00
|
|
|
log.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
smallvec.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
sum_tree.workspace = true
|
|
|
|
util.workspace = true
|
2022-10-12 01:25:54 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util = { workspace = true, features = ["test-support"] }
|