zed/crates/text/Cargo.toml

38 lines
902 B
TOML
Raw Normal View History

2021-10-04 14:50:12 +00:00
[package]
name = "text"
2021-10-04 14:50:12 +00:00
version = "0.1.0"
edition = "2021"
publish = false
2021-10-04 14:50:12 +00:00
[lib]
path = "src/text.rs"
doctest = false
2021-10-04 14:50:12 +00:00
[features]
test-support = ["rand"]
2021-10-04 14:50:12 +00:00
[dependencies]
clock = { path = "../clock" }
collections = { path = "../collections" }
fs = { path = "../fs" }
2022-10-11 22:25:54 +00:00
rope = { path = "../rope" }
sum_tree = { path = "../sum_tree" }
anyhow = "1.0.38"
digest = { version = "0.9", features = ["std"] }
lazy_static = "1.4"
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
parking_lot = "0.11"
postage = { version = "0.4.1", features = ["futures-traits"] }
2021-10-04 14:50:12 +00:00
rand = { version = "0.8.3", optional = true }
smallvec = { version = "1.6", features = ["union"] }
2022-10-11 22:25:54 +00:00
util = { path = "../util" }
regex = "1.5"
2021-10-04 14:50:12 +00:00
[dev-dependencies]
collections = { path = "../collections", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
ctor = "0.1"
env_logger = "0.9"
2021-10-04 14:50:12 +00:00
rand = "0.8.3"