1[package]
2name = "fs"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8
9[lib]
10path = "src/fs.rs"
11
12[dependencies]
13collections = { path = "../collections" }
14rope = { path = "../rope" }
15text = { path = "../text" }
16util = { path = "../util" }
17sum_tree = { path = "../sum_tree" }
18
19anyhow.workspace = true
20async-trait.workspace = true
21futures.workspace = true
22tempfile = "3"
23lazy_static.workspace = true
24parking_lot.workspace = true
25smol.workspace = true
26regex.workspace = true
27git2.workspace = true
28serde.workspace = true
29serde_derive.workspace = true
30serde_json.workspace = true
31log.workspace = true
32libc = "0.2"
33time.workspace = true
34
35gpui = { path = "../gpui", optional = true}
36
37[target.'cfg(target_os = "macos")'.dependencies]
38fsevent = { path = "../fsevent" }
39
40[target.'cfg(not(target_os = "macos"))'.dependencies]
41notify = "6.1.1"
42
43[dev-dependencies]
44gpui = { path = "../gpui", features = ["test-support"] }
45
46[features]
47test-support = ["gpui/test-support"]