1[package]
2name = "fs"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-only"
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"
23fsevent = { path = "../fsevent" }
24lazy_static.workspace = true
25parking_lot.workspace = true
26smol.workspace = true
27regex.workspace = true
28git2.workspace = true
29serde.workspace = true
30serde_derive.workspace = true
31serde_json.workspace = true
32log.workspace = true
33libc = "0.2"
34time.workspace = true
35
36gpui = { path = "../gpui", optional = true}
37
38[dev-dependencies]
39gpui = { path = "../gpui", features = ["test-support"] }
40
41[features]
42test-support = ["gpui/test-support"]