Cargo.toml

 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" }
24log = "0.4"
25live_kit_client = { path = "../live_kit_client" }
26media = { path = "../media" }
27project = { path = "../project" }
28util = { path = "../util" }
29
30anyhow = "1.0.38"
31async-broadcast = "0.4"
32futures = "0.3"
33postage = { version = "0.4.1", features = ["futures-traits"] }
34
35[dev-dependencies]
36client = { path = "../client", features = ["test-support"] }
37collections = { path = "../collections", features = ["test-support"] }
38gpui = { path = "../gpui", features = ["test-support"] }
39live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
40project = { path = "../project", features = ["test-support"] }
41util = { path = "../util", features = ["test-support"] }