Cargo.toml

 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" }
12gpui = { path = "../gpui" }
13lsp = { path = "../lsp" }
14rope = { path = "../rope" }
15text = { path = "../text" }
16util = { path = "../util" }
17sum_tree = { path = "../sum_tree" }
18rpc = { path = "../rpc" }
19
20anyhow.workspace = true
21async-trait.workspace = true
22futures.workspace = true
23tempfile = "3"
24fsevent = { path = "../fsevent" }
25lazy_static.workspace = true
26parking_lot.workspace = true
27smol.workspace = true
28regex.workspace = true
29git2 = { version = "0.15", default-features = false }
30serde.workspace = true
31serde_derive.workspace = true
32serde_json.workspace = true
33log.workspace = true
34libc = "0.2"
35time.workspace = true
36
37[dev-dependencies]
38gpui = { path = "../gpui", features = ["test-support"] }
39
40[features]
41test-support = []