mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 05:37:29 +03:00
dffddaec4c
This reverts commit caed275fbf
.
NOTE: this should not be merged until #9668 is on stable and the
`ZedVersion#can_collaborate` is updated to exclude all clients without
that change.
Release Notes:
- N/A
---------
Co-authored-by: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com>
31 lines
594 B
TOML
31 lines
594 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]
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
rand.workspace = true
|
|
util = { workspace = true, features = ["test-support"] }
|
|
criterion = { version = "0.4", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "rope_benchmark"
|
|
harness = false
|