Cargo.toml

 1[package]
 2name = "client"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/client.rs"
 8doctest = false
 9
10[features]
11test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"]
12
13[dependencies]
14collections = { path = "../collections" }
15gpui = { path = "../gpui" }
16util = { path = "../util" }
17rpc = { path = "../rpc" }
18sum_tree = { path = "../sum_tree" }
19anyhow = "1.0.38"
20async-recursion = "0.3"
21async-tungstenite = { version = "0.16", features = ["async-tls"] }
22futures = "0.3"
23image = "0.23"
24isahc = "1.7"
25lazy_static = "1.4.0"
26log = { version = "0.4.16", features = ["kv_unstable_serde"] }
27parking_lot = "0.11.1"
28postage = { version = "0.4.1", features = ["futures-traits"] }
29rand = "0.8.3"
30smol = "1.2.5"
31thiserror = "1.0.29"
32time = { version = "0.3", features = ["serde", "serde-well-known"] }
33tiny_http = "0.8"
34url = "2.2"
35
36[dev-dependencies]
37collections = { path = "../collections", features = ["test-support"] }
38gpui = { path = "../gpui", features = ["test-support"] }
39rpc = { path = "../rpc", features = ["test-support"] }