Cargo.toml

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