Cargo.toml

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