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" }
20anyhow = "1.0.38"
21digest = { version = "0.9", features = ["std"] }
22lazy_static = "1.4"
23log = { version = "0.4.16", features = ["kv_unstable_serde"] }
24parking_lot = "0.11"
25postage = { workspace = true }
26rand = { version = "0.8.3", optional = true }
27smallvec = { version = "1.6", features = ["union"] }
28util = { path = "../util" }
29regex = "1.5"
30
31
32[dev-dependencies]
33collections = { path = "../collections", features = ["test-support"] }
34gpui = { path = "../gpui", features = ["test-support"] }
35ctor = "0.1"
36env_logger = "0.9"
37rand = "0.8.3"