Cargo.toml

 1[package]
 2name = "client"
 3version = "0.1.0"
 4edition = "2018"
 5
 6[features]
 7test-support = ["rpc/test-support"]
 8
 9[dependencies]
10gpui = { path = "../gpui" }
11util = { path = "../util" }
12rpc = { path = "../rpc" }
13sum_tree = { path = "../sum_tree" }
14anyhow = "1.0.38"
15async-recursion = "0.3"
16async-tungstenite = { version = "0.14", features = ["async-tls"] }
17futures = "0.3"
18image = "0.23"
19lazy_static = "1.4.0"
20log = "0.4"
21parking_lot = "0.11.1"
22postage = { version = "0.4.1", features = ["futures-traits"] }
23rand = "0.8.3"
24smol = "1.2.5"
25surf = "2.2"
26thiserror = "1.0.29"
27time = "0.3"
28tiny_http = "0.8"