Cargo.toml

 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" }
26
27anyhow.workspace = true
28futures.workspace = true
29image = "0.23"
30lazy_static.workspace = true
31log.workspace = true
32parking_lot.workspace = true
33postage.workspace = true
34rand.workspace = true
35schemars.workspace = true
36smol.workspace = true
37thiserror.workspace = true
38time.workspace = true
39tiny_http = "0.8"
40uuid = { version = "1.1.2", features = ["v4"] }
41url = "2.2"
42serde.workspace = true
43serde_derive.workspace = true
44tempfile = "3"
45
46[dev-dependencies]
47collections = { path = "../collections", features = ["test-support"] }
48gpui = { path = "../gpui", features = ["test-support"] }
49rpc = { path = "../rpc", features = ["test-support"] }
50settings = { path = "../settings", features = ["test-support"] }
51util = { path = "../util", features = ["test-support"] }