zed/crates/text/Cargo.toml

31 lines
688 B
TOML
Raw Normal View History

2021-10-04 17:50:12 +03:00
[package]
name = "text"
2021-10-04 17:50:12 +03:00
version = "0.1.0"
edition = "2021"
2021-10-04 17:50:12 +03:00
[lib]
path = "src/text.rs"
2021-10-04 17:50:12 +03:00
[features]
test-support = ["rand"]
2021-10-04 17:50:12 +03:00
[dependencies]
clock = { path = "../clock" }
collections = { path = "../collections" }
sum_tree = { path = "../sum_tree" }
anyhow = "1.0.38"
arrayvec = "0.7.1"
lazy_static = "1.4"
2021-10-04 17:50:12 +03:00
log = "0.4"
parking_lot = "0.11"
2021-10-04 17:50:12 +03:00
rand = { version = "0.8.3", optional = true }
smallvec = { version = "1.6", features = ["union"] }
[dev-dependencies]
collections = { path = "../collections", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
util = { path = "../util", features = ["test-support"] }
ctor = "0.1"
env_logger = "0.8"
2021-10-04 17:50:12 +03:00
rand = "0.8.3"