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