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