zed/crates/text2/Cargo.toml

38 lines
926 B
TOML
Raw Normal View History

2023-11-01 23:13:53 +03:00
[package]
name = "text2"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/text2.rs"
doctest = false
[features]
test-support = ["rand"]
[dependencies]
clock = { path = "../clock" }
collections = { path = "../collections" }
2023-11-03 19:15:23 +03:00
rope = { package = "rope2", path = "../rope2" }
2023-11-01 23:13:53 +03:00
sum_tree = { path = "../sum_tree" }
util = { path = "../util" }
anyhow.workspace = true
digest = { version = "0.9", features = ["std"] }
lazy_static.workspace = true
log.workspace = true
parking_lot.workspace = true
postage.workspace = true
rand = { workspace = true, optional = true }
smallvec.workspace = true
regex.workspace = true
[dev-dependencies]
collections = { path = "../collections", features = ["test-support"] }
2023-11-02 20:55:02 +03:00
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
2023-11-01 23:13:53 +03:00
util = { path = "../util", features = ["test-support"] }
ctor.workspace = true
env_logger.workspace = true
rand.workspace = true