1[package]
2name = "text"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/text.rs"
8doctest = false
9
10[features]
11test-support = ["rand"]
12
13[dependencies]
14clock = { path = "../clock" }
15collections = { path = "../collections" }
16fs = { path = "../fs" }
17rope = { path = "../rope" }
18sum_tree = { path = "../sum_tree" }
19anyhow = "1.0.38"
20digest = { version = "0.9", features = ["std"] }
21lazy_static = "1.4"
22log = { version = "0.4.16", features = ["kv_unstable_serde"] }
23parking_lot = "0.11"
24postage = { version = "0.4.1", features = ["futures-traits"] }
25rand = { version = "0.8.3", optional = true }
26smallvec = { version = "1.6", features = ["union"] }
27util = { path = "../util" }
28regex = "1.5"
29
30
31[dev-dependencies]
32collections = { path = "../collections", features = ["test-support"] }
33gpui = { path = "../gpui", features = ["test-support"] }
34ctor = "0.1"
35env_logger = "0.9"
36rand = "0.8.3"