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]
23audio = { path = "../audio" }
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
39image = "0.23"
40postage.workspace = true
41schemars.workspace = true
42serde.workspace = true
43serde_json.workspace = true
44serde_derive.workspace = true
45smallvec.workspace = true
46
47[dev-dependencies]
48client = { path = "../client", features = ["test-support"] }
49fs = { path = "../fs", features = ["test-support"] }
50language = { path = "../language", features = ["test-support"] }
51collections = { path = "../collections", features = ["test-support"] }
52gpui = { path = "../gpui", features = ["test-support"] }
53live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
54project = { path = "../project", features = ["test-support"] }
55util = { path = "../util", features = ["test-support"] }