Cargo.toml

 1[package]
 2name = "fs2"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/fs2.rs"
 9
10[dependencies]
11collections = { path = "../collections" }
12rope = { package = "rope2", path = "../rope2" }
13text = { package = "text2", path = "../text2" }
14util = { path = "../util" }
15sum_tree = { path = "../sum_tree" }
16
17anyhow.workspace = true
18async-trait.workspace = true
19futures.workspace = true
20tempfile = "3"
21fsevent = { path = "../fsevent" }
22lazy_static.workspace = true
23parking_lot.workspace = true
24smol.workspace = true
25regex.workspace = true
26git2.workspace = true
27serde.workspace = true
28serde_derive.workspace = true
29serde_json.workspace = true
30log.workspace = true
31libc = "0.2"
32time.workspace = true
33
34gpui = { package = "gpui2", path = "../gpui2", optional = true}
35
36[dev-dependencies]
37gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
38
39[features]
40test-support = ["gpui/test-support"]