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
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
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]
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
clock.workspace = true
|
|
|
|
collections.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
rand = { workspace = true, optional = true }
|
|
|
|
regex.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
rope.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
smallvec.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
sum_tree.workspace = true
|
|
|
|
util.workspace = true
|
2021-10-04 17:50:12 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
rand.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util = { workspace = true, features = ["test-support"] }
|
2024-07-24 01:01:05 +03:00
|
|
|
http_client = { workspace = true, features = ["test-support"] }
|