1[package]
2name = "fs"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/fs.rs"
9
10[dependencies]
11collections = { path = "../collections" }
12rope = { path = "../rope" }
13text = { path = "../text" }
14util = { path = "../util" }
15sum_tree = { path = "../sum_tree" }
16rpc = { path = "../rpc" }
17
18anyhow.workspace = true
19async-trait.workspace = true
20futures.workspace = true
21tempfile = "3"
22fsevent = { path = "../fsevent" }
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[dev-dependencies]
38gpui = { path = "../gpui", features = ["test-support"] }
39
40[features]
41test-support = ["gpui/test-support"]