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