1[package]
2name = "client2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/client2.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 = { package = "db2", path = "../db2" }
18gpui = { package = "gpui2", path = "../gpui2" }
19util = { path = "../util" }
20rpc = { package = "rpc2", path = "../rpc2" }
21text = { package = "text2", path = "../text2" }
22settings = { package = "settings2", path = "../settings2" }
23feature_flags = { package = "feature_flags2", path = "../feature_flags2" }
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
39smol.workspace = true
40sysinfo.workspace = true
41tempfile = "3"
42thiserror.workspace = true
43time.workspace = true
44tiny_http = "0.8"
45uuid.workspace = true
46url = "2.2"
47
48[dev-dependencies]
49collections = { path = "../collections", features = ["test-support"] }
50gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
51rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
52settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
53util = { path = "../util", features = ["test-support"] }