1[package]
2name = "channel2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/channel2.rs"
9doctest = false
10
11[features]
12test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"]
13
14[dependencies]
15client = { package = "client2", path = "../client2" }
16collections = { path = "../collections" }
17db = { package = "db2", path = "../db2" }
18gpui = { package = "gpui2", path = "../gpui2" }
19util = { path = "../util" }
20rpc = { package = "rpc2", path = "../rpc2" }
21text = { path = "../text" }
22language = { package = "language2", path = "../language2" }
23settings = { package = "settings2", path = "../settings2" }
24feature_flags = { package = "feature_flags2", path = "../feature_flags2" }
25sum_tree = { path = "../sum_tree" }
26clock = { path = "../clock" }
27
28anyhow.workspace = true
29futures.workspace = true
30image = "0.23"
31lazy_static.workspace = true
32smallvec.workspace = true
33log.workspace = true
34parking_lot.workspace = true
35postage.workspace = true
36rand.workspace = true
37schemars.workspace = true
38smol.workspace = true
39thiserror.workspace = true
40time.workspace = true
41tiny_http = "0.8"
42uuid.workspace = true
43url = "2.2"
44serde.workspace = true
45serde_derive.workspace = true
46tempfile = "3"
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"] }
52client = { package = "client2", path = "../client2", features = ["test-support"] }
53settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
54util = { path = "../util", features = ["test-support"] }