mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-05 23:51:08 +00:00
e0fe7f632c
Fixes https://github.com/zed-industries/zed/issues/15218 Reverts zed-industries/zed#15282 Release Notes: - N/A --------- Co-authored-by: Nathan <nathan@zed.dev>
32 lines
644 B
TOML
32 lines
644 B
TOML
[package]
|
|
name = "rope"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/rope.rs"
|
|
|
|
[dependencies]
|
|
arrayvec = "0.7.1"
|
|
log.workspace = true
|
|
smallvec.workspace = true
|
|
sum_tree.workspace = true
|
|
unicode-segmentation.workspace = true
|
|
util.workspace = true
|
|
|
|
[dev-dependencies]
|
|
ctor.workspace = true
|
|
env_logger.workspace = true
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
rand.workspace = true
|
|
util = { workspace = true, features = ["test-support"] }
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "rope_benchmark"
|
|
harness = false
|