Cargo.toml

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