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" }
16sum_tree = { path = "../sum_tree" }
17anyhow = "1.0.38"
18arrayvec = "0.7.1"
19lazy_static = "1.4"
20log = "0.4"
21parking_lot = "0.11"
22postage = { version = "0.4.1", features = ["futures-traits"] }
23rand = { version = "0.8.3", optional = true }
24smallvec = { version = "1.6", features = ["union"] }
25
26[dev-dependencies]
27collections = { path = "../collections", features = ["test-support"] }
28gpui = { path = "../gpui", features = ["test-support"] }
29util = { path = "../util", features = ["test-support"] }
30ctor = "0.1"
31env_logger = "0.8"
32rand = "0.8.3"