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