Cargo.toml

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