1[package]
2name = "call"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/call.rs"
8doctest = false
9
10[features]
11test-support = [
12 "client/test-support",
13 "collections/test-support",
14 "gpui/test-support",
15 "live_kit_client/test-support",
16 "project/test-support",
17 "util/test-support"
18]
19
20[dependencies]
21client = { path = "../client" }
22collections = { path = "../collections" }
23gpui = { path = "../gpui" }
24live_kit_client = { path = "../live_kit_client" }
25media = { path = "../media" }
26project = { path = "../project" }
27util = { path = "../util" }
28
29anyhow = "1.0.38"
30async-broadcast = "0.4"
31futures = "0.3"
32postage = { version = "0.4.1", features = ["futures-traits"] }
33
34[dev-dependencies]
35client = { path = "../client", features = ["test-support"] }
36collections = { path = "../collections", features = ["test-support"] }
37gpui = { path = "../gpui", features = ["test-support"] }
38live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
39project = { path = "../project", features = ["test-support"] }
40util = { path = "../util", features = ["test-support"] }