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" }
24theme = { path = "../theme" }
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
37smol.workspace = true
38thiserror.workspace = true
39time.workspace = true
40tiny_http = "0.8"
41uuid = { version = "1.1.2", features = ["v4"] }
42url = "2.2"
43serde.workspace = true
44serde_derive.workspace = true
45tempfile = "3"
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"] }