Cargo.toml

 1[package]
 2name = "call"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/call.rs"
 9doctest = false
10
11[features]
12test-support = [
13    "client/test-support",
14    "collections/test-support",
15    "gpui/test-support",
16    "live_kit_client/test-support",
17    "project/test-support",
18    "util/test-support"
19]
20
21[dependencies]
22audio = { path = "../audio" }
23channel = { path = "../channel" }
24client = { path = "../client" }
25collections = { path = "../collections" }
26gpui = { path = "../gpui" }
27log.workspace = true
28live_kit_client = { path = "../live_kit_client" }
29fs = { path = "../fs" }
30language = { path = "../language" }
31media = { path = "../media" }
32project = { path = "../project" }
33settings = { path = "../settings" }
34util = { path = "../util" }
35
36anyhow.workspace = true
37async-broadcast = "0.4"
38futures.workspace = true
39postage.workspace = true
40schemars.workspace = true
41serde.workspace = true
42serde_json.workspace = true
43serde_derive.workspace = true
44
45[dev-dependencies]
46client = { path = "../client", features = ["test-support"] }
47fs = { path = "../fs", features = ["test-support"] }
48language = { path = "../language", features = ["test-support"] }
49collections = { path = "../collections", features = ["test-support"] }
50gpui = { path = "../gpui", features = ["test-support"] }
51live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
52project = { path = "../project", features = ["test-support"] }
53util = { path = "../util", features = ["test-support"] }