Cargo.toml

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