Cargo.toml

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