1[package]
2name = "channel"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/channel.rs"
9doctest = false
10
11[features]
12test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"]
13
14[dependencies]
15client = { path = "../client" }
16collections = { path = "../collections" }
17db = { path = "../db" }
18gpui = { path = "../gpui" }
19util = { path = "../util" }
20rpc = { path = "../rpc" }
21text = { path = "../text" }
22language = { path = "../language" }
23settings = { path = "../settings" }
24feature_flags = { path = "../feature_flags" }
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 = { path = "../gpui", features = ["test-support"] }
51rpc = { path = "../rpc", features = ["test-support"] }
52client = { path = "../client", features = ["test-support"] }
53settings = { path = "../settings", features = ["test-support"] }
54util = { path = "../util", features = ["test-support"] }