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-12 01:25:54 +03:00
|
|
|
rope = { path = "../rope" }
|
2021-10-05 01:36:52 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2022-10-12 01:25:54 +03:00
|
|
|
util = { path = "../util" }
|
|
|
|
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
digest = { version = "0.9", features = ["std"] }
|
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
rand = { workspace = true, optional = true }
|
|
|
|
smallvec.workspace = true
|
|
|
|
regex.workspace = true
|
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"] }
|
2023-09-01 01:52:16 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
|
|
|
rand.workspace = true
|