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" }
20settings = { path = "../settings" }
21staff_mode = { path = "../staff_mode" }
22sum_tree = { path = "../sum_tree" }
23
24anyhow.workspace = true
25async-recursion = "0.3"
26async-tungstenite = { version = "0.16", features = ["async-tls"] }
27futures.workspace = true
28image = "0.23"
29lazy_static.workspace = true
30log.workspace = true
31parking_lot.workspace = true
32postage.workspace = true
33rand.workspace = true
34schemars.workspace = true
35smol.workspace = true
36thiserror.workspace = true
37time.workspace = true
38tiny_http = "0.8"
39uuid = { version = "1.1.2", features = ["v4"] }
40url = "2.2"
41serde.workspace = true
42serde_derive.workspace = true
43tempfile = "3"
44
45[dev-dependencies]
46collections = { path = "../collections", features = ["test-support"] }
47gpui = { path = "../gpui", features = ["test-support"] }
48rpc = { path = "../rpc", features = ["test-support"] }
49settings = { path = "../settings", features = ["test-support"] }
50util = { path = "../util", features = ["test-support"] }