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"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
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" }
|
2022-10-11 23:03:36 +03:00
|
|
|
fs = { path = "../fs" }
|
2022-10-12 01:25:54 +03:00
|
|
|
rope = { path = "../rope" }
|
2021-10-05 01:36:52 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
|
|
|
anyhow = "1.0.38"
|
2022-06-17 12:45:26 +03:00
|
|
|
digest = { version = "0.9", features = ["std"] }
|
2021-12-10 11:16:58 +03:00
|
|
|
lazy_static = "1.4"
|
2022-04-08 19:06:51 +03:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2021-12-01 17:55:05 +03:00
|
|
|
parking_lot = "0.11"
|
2023-03-21 03:17:09 +03:00
|
|
|
postage = { workspace = true }
|
2021-10-04 17:50:12 +03:00
|
|
|
rand = { version = "0.8.3", optional = true }
|
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
2022-10-12 01:25:54 +03:00
|
|
|
util = { path = "../util" }
|
|
|
|
regex = "1.5"
|
|
|
|
|
2021-10-04 17:50:12 +03:00
|
|
|
|
|
|
|
[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"] }
|
2021-12-01 17:55:05 +03:00
|
|
|
ctor = "0.1"
|
2022-06-03 03:24:57 +03:00
|
|
|
env_logger = "0.9"
|
2021-10-04 17:50:12 +03:00
|
|
|
rand = "0.8.3"
|