2021-10-04 14:50:12 +00:00
|
|
|
[package]
|
2021-11-30 19:26:12 +00:00
|
|
|
name = "text"
|
2021-10-04 14:50:12 +00:00
|
|
|
version = "0.1.0"
|
2021-10-29 16:31:21 +00:00
|
|
|
edition = "2021"
|
2021-10-04 14:50:12 +00:00
|
|
|
|
2021-11-30 19:26:12 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/text.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:26:12 +00:00
|
|
|
|
2021-10-04 14:50:12 +00:00
|
|
|
[features]
|
2021-11-29 23:22:45 +00:00
|
|
|
test-support = ["rand"]
|
2021-10-04 14:50:12 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clock = { path = "../clock" }
|
2021-11-29 23:22:45 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-10-11 20:03:36 +00:00
|
|
|
fs = { path = "../fs" }
|
2022-10-11 22:25:54 +00:00
|
|
|
rope = { path = "../rope" }
|
2021-10-04 22:36:52 +00:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
|
|
|
anyhow = "1.0.38"
|
2022-06-17 09:45:26 +00:00
|
|
|
digest = { version = "0.9", features = ["std"] }
|
2021-12-10 08:16:58 +00:00
|
|
|
lazy_static = "1.4"
|
2022-04-08 16:06:51 +00:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2021-12-01 14:55:05 +00:00
|
|
|
parking_lot = "0.11"
|
2022-02-02 16:01:23 +00:00
|
|
|
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]
|
2021-11-29 23:22:45 +00:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2021-10-05 21:18:04 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-12-01 14:55:05 +00:00
|
|
|
ctor = "0.1"
|
2022-06-03 00:24:57 +00:00
|
|
|
env_logger = "0.9"
|
2021-10-04 14:50:12 +00:00
|
|
|
rand = "0.8.3"
|