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"
18log = "0.4"
19parking_lot = "0.11"
20rand = { version = "0.8.3", optional = true }
21smallvec = { version = "1.6", features = ["union"] }
22
23[dev-dependencies]
24collections = { path = "../collections", features = ["test-support"] }
25gpui = { path = "../gpui", features = ["test-support"] }
26ctor = "0.1"
27env_logger = "0.8"
28rand = "0.8.3"