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