Cargo.toml

 1[package]
 2name = "text"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/text.rs"
 8
 9[features]
10test-support = ["rand"]
11
12[dependencies]
13clock = { path = "../clock" }
14collections = { path = "../collections" }
15sum_tree = { path = "../sum_tree" }
16anyhow = "1.0.38"
17arrayvec = "0.7.1"
18lazy_static = "1.4"
19log = "0.4"
20parking_lot = "0.11"
21rand = { version = "0.8.3", optional = true }
22smallvec = { version = "1.6", features = ["union"] }
23
24[dev-dependencies]
25collections = { path = "../collections", features = ["test-support"] }
26gpui = { path = "../gpui", features = ["test-support"] }
27util = { path = "../util", features = ["test-support"] }
28ctor = "0.1"
29env_logger = "0.8"
30rand = "0.8.3"