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