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