1[package]
2name = "text"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/text.rs"
9doctest = false
10
11[features]
12test-support = ["rand"]
13
14[dependencies]
15clock = { path = "../clock" }
16collections = { path = "../collections" }
17fs = { path = "../fs" }
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"] }
35ctor.workspace = true
36env_logger.workspace = true
37rand.workspace = true