1[package]
2name = "text"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8
9[lib]
10path = "src/text.rs"
11doctest = false
12
13[features]
14test-support = ["rand"]
15
16[dependencies]
17clock = { path = "../clock" }
18collections = { path = "../collections" }
19rope = { path = "../rope" }
20sum_tree = { path = "../sum_tree" }
21util = { path = "../util" }
22
23anyhow.workspace = true
24digest = { version = "0.9", features = ["std"] }
25lazy_static.workspace = true
26log.workspace = true
27parking_lot.workspace = true
28postage.workspace = true
29rand = { workspace = true, optional = true }
30smallvec.workspace = true
31regex.workspace = true
32
33[dev-dependencies]
34collections = { path = "../collections", features = ["test-support"] }
35gpui = { path = "../gpui", features = ["test-support"] }
36util = { path = "../util", features = ["test-support"] }
37ctor.workspace = true
38env_logger.workspace = true
39rand.workspace = true