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