1[package]
2name = "fs"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/fs.rs"
8
9[dependencies]
10collections = { path = "../collections" }
11gpui = { path = "../gpui" }
12lsp = { path = "../lsp" }
13rope = { path = "../rope" }
14util = { path = "../util" }
15anyhow = "1.0.57"
16async-trait = "0.1"
17futures = "0.3"
18tempfile = "3"
19fsevent = { path = "../fsevent" }
20lazy_static = "1.4.0"
21parking_lot = "0.11.1"
22smol = "1.2.5"
23regex = "1.5"
24git2 = { version = "0.15", default-features = false }
25serde = { workspace = true }
26serde_json = { workspace = true }
27log = { version = "0.4.16", features = ["kv_unstable_serde"] }
28libc = "0.2"
29
30[features]
31test-support = []