Cargo.toml

 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"
19digest = { version = "0.9", features = ["std"] }
20bromberg_sl2 = "0.6"
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 }
26regex = "1.5"
27smallvec = { version = "1.6", features = ["union"] }
28
29[dev-dependencies]
30collections = { path = "../collections", features = ["test-support"] }
31gpui = { path = "../gpui", features = ["test-support"] }
32util = { path = "../util", features = ["test-support"] }
33ctor = "0.1"
34env_logger = "0.9"
35rand = "0.8.3"