Cargo.toml

 1[package]
 2name = "worktree"
 3version = "0.1.0"
 4edition = "2018"
 5
 6[features]
 7test-support = []
 8
 9[dependencies]
10anyhow = "1.0.38"
11async-trait = "0.1"
12buffer = { path = "../buffer" }
13clock = { path = "../clock" }
14fsevent = { path = "../fsevent" }
15futures = "0.3"
16fuzzy = { path = "../fuzzy" }
17gpui = { path = "../gpui" }
18ignore = "0.4"
19lazy_static = "1.4.0"
20libc = "0.2"
21log = "0.4"
22parking_lot = "0.11.1"
23postage = { version = "0.4.1", features = ["futures-traits"] }
24rpc_client = { path = "../rpc_client" }
25serde = { version = "1", features = ["derive"] }
26serde_json = { version = "1.0.64", features = ["preserve_order"] }
27smol = "1.2.5"
28sum_tree = { path = "../sum_tree" }
29util = { path = "../util" }
30toml = "0.5"
31zrpc = { path = "../zrpc" }
32
33[dev-dependencies]
34rand = "0.8.3"
35rpc_client = { path = "../rpc_client", features = ["test-support"] }
36tempdir = { version = "0.3.7" }
37util = { path = "../util", features = ["test-support"] }
38zrpc = { path = "../zrpc", features = ["test-support"] }