2021-10-04 17:50:12 +03:00
|
|
|
[package]
|
2021-11-30 22:26:12 +03:00
|
|
|
name = "text"
|
2021-10-04 17:50:12 +03:00
|
|
|
version = "0.1.0"
|
2021-10-29 19:31:21 +03:00
|
|
|
edition = "2021"
|
2021-10-04 17:50:12 +03:00
|
|
|
|
2021-11-30 22:26:12 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/text.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:26:12 +03:00
|
|
|
|
2021-10-04 17:50:12 +03:00
|
|
|
[features]
|
2021-11-30 02:22:45 +03:00
|
|
|
test-support = ["rand"]
|
2021-10-04 17:50:12 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clock = { path = "../clock" }
|
2021-11-30 02:22:45 +03:00
|
|
|
collections = { path = "../collections" }
|
2021-10-05 01:36:52 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
|
|
|
anyhow = "1.0.38"
|
|
|
|
arrayvec = "0.7.1"
|
2021-12-10 11:16:58 +03:00
|
|
|
lazy_static = "1.4"
|
2021-10-04 17:50:12 +03:00
|
|
|
log = "0.4"
|
2021-12-01 17:55:05 +03:00
|
|
|
parking_lot = "0.11"
|
2022-02-02 19:01:23 +03:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2021-10-04 17:50:12 +03:00
|
|
|
rand = { version = "0.8.3", optional = true }
|
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-30 02:22:45 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2021-10-06 00:18:04 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2022-01-05 13:51:41 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2021-12-01 17:55:05 +03:00
|
|
|
ctor = "0.1"
|
|
|
|
env_logger = "0.8"
|
2021-10-04 17:50:12 +03:00
|
|
|
rand = "0.8.3"
|