1[package]
2name = "client"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lib]
9path = "src/client.rs"
10doctest = false
11
12[features]
13test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"]
14
15[dependencies]
16chrono = { version = "0.4", features = ["serde"] }
17collections = { path = "../collections" }
18db = { path = "../db" }
19gpui = { path = "../gpui" }
20util = { path = "../util" }
21rpc = { path = "../rpc" }
22text = { path = "../text" }
23settings = { path = "../settings" }
24feature_flags = { path = "../feature_flags" }
25sum_tree = { path = "../sum_tree" }
26
27anyhow.workspace = true
28async-recursion = "0.3"
29async-tungstenite = { version = "0.16", features = ["async-tls"] }
30futures.workspace = true
31image = "0.23"
32lazy_static.workspace = true
33log.workspace = true
34parking_lot.workspace = true
35postage.workspace = true
36rand.workspace = true
37schemars.workspace = true
38serde.workspace = true
39serde_derive.workspace = true
40serde_json.workspace = true
41smol.workspace = true
42sysinfo.workspace = true
43tempfile = "3"
44thiserror.workspace = true
45time.workspace = true
46tiny_http = "0.8"
47uuid.workspace = true
48url = "2.2"
49
50[dev-dependencies]
51collections = { path = "../collections", features = ["test-support"] }
52gpui = { path = "../gpui", features = ["test-support"] }
53rpc = { path = "../rpc", features = ["test-support"] }
54settings = { path = "../settings", features = ["test-support"] }
55util = { path = "../util", features = ["test-support"] }