1[package]
2name = "fs"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lib]
9path = "src/fs.rs"
10
11[dependencies]
12collections = { path = "../collections" }
13rope = { path = "../rope" }
14text = { path = "../text" }
15util = { path = "../util" }
16sum_tree = { path = "../sum_tree" }
17
18anyhow.workspace = true
19async-trait.workspace = true
20futures.workspace = true
21tempfile.workspace = true
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 = { path = "../gpui", optional = true}
35
36[target.'cfg(target_os = "macos")'.dependencies]
37fsevent = { path = "../fsevent" }
38
39[target.'cfg(not(target_os = "macos"))'.dependencies]
40notify = "6.1.1"
41
42[dev-dependencies]
43gpui = { path = "../gpui", features = ["test-support"] }
44
45[features]
46test-support = ["gpui/test-support"]