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