1[package]
2name = "channel"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8[lib]
9path = "src/channel.rs"
10doctest = false
11
12[features]
13test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"]
14
15[dependencies]
16anyhow.workspace = true
17client = { path = "../client" }
18clock = { path = "../clock" }
19collections = { path = "../collections" }
20db = { path = "../db" }
21feature_flags = { path = "../feature_flags" }
22futures.workspace = true
23gpui = { path = "../gpui" }
24image = "0.23"
25language = { path = "../language" }
26lazy_static.workspace = true
27log.workspace = true
28parking_lot.workspace = true
29postage.workspace = true
30rand.workspace = true
31release_channel = { path = "../release_channel" }
32rpc = { path = "../rpc" }
33schemars.workspace = true
34serde.workspace = true
35serde_derive.workspace = true
36settings = { path = "../settings" }
37smallvec.workspace = true
38smol.workspace = true
39sum_tree = { path = "../sum_tree" }
40tempfile.workspace = true
41text = { path = "../text" }
42thiserror.workspace = true
43time.workspace = true
44tiny_http = "0.8"
45url.workspace = true
46util = { path = "../util" }
47uuid.workspace = true
48
49[dev-dependencies]
50collections = { path = "../collections", features = ["test-support"] }
51gpui = { path = "../gpui", features = ["test-support"] }
52rpc = { path = "../rpc", features = ["test-support"] }
53client = { path = "../client", features = ["test-support"] }
54settings = { path = "../settings", features = ["test-support"] }
55util = { path = "../util", features = ["test-support"] }