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" }
15util = { path = "../util" }
16anyhow.workspace = true
17async-trait.workspace = true
18futures.workspace = true
19tempfile = "3"
20fsevent = { path = "../fsevent" }
21lazy_static.workspace = true
22parking_lot.workspace = true
23smol.workspace = true
24regex.workspace = true
25git2 = { version = "0.15", default-features = false }
26serde.workspace = true
27serde_derive.workspace = true
28serde_json.workspace = true
29log.workspace = true
30libc = "0.2"
31
32[features]
33test-support = []