Cargo.toml

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