1[package]
2name = "client"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/client.rs"
8doctest = false
9
10[features]
11test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"]
12
13[dependencies]
14collections = { path = "../collections" }
15db = { path = "../db" }
16gpui = { path = "../gpui" }
17util = { path = "../util" }
18rpc = { path = "../rpc" }
19sum_tree = { path = "../sum_tree" }
20anyhow = "1.0.38"
21async-recursion = "0.3"
22async-tungstenite = { version = "0.16", features = ["async-tls"] }
23futures = "0.3"
24image = "0.23"
25isahc = "1.7"
26lazy_static = "1.4.0"
27log = { version = "0.4.16", features = ["kv_unstable_serde"] }
28parking_lot = "0.11.1"
29postage = { version = "0.4.1", features = ["futures-traits"] }
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 = { version = "*", features = ["derive"] }
38settings = { path = "../settings" }
39tempfile = "3"
40
41[dev-dependencies]
42collections = { path = "../collections", features = ["test-support"] }
43gpui = { path = "../gpui", features = ["test-support"] }
44rpc = { path = "../rpc", features = ["test-support"] }
45settings = { path = "../settings", features = ["test-support"] }