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