1[package]
2name = "call2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/call2.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 = { package = "audio2", path = "../audio2" }
23client = { package = "client2", path = "../client2" }
24collections = { path = "../collections" }
25gpui = { package = "gpui2", path = "../gpui2" }
26log.workspace = true
27live_kit_client = { package = "live_kit_client2", path = "../live_kit_client2" }
28fs = { package = "fs2", path = "../fs2" }
29language = { package = "language2", path = "../language2" }
30media = { path = "../media" }
31project = { package = "project2", path = "../project2" }
32settings = { package = "settings2", path = "../settings2" }
33util = { path = "../util" }
34
35anyhow.workspace = true
36async-broadcast = "0.4"
37futures.workspace = true
38postage.workspace = true
39schemars.workspace = true
40serde.workspace = true
41serde_json.workspace = true
42serde_derive.workspace = true
43
44[dev-dependencies]
45client = { package = "client2", path = "../client2", features = ["test-support"] }
46fs = { package = "fs2", path = "../fs2", features = ["test-support"] }
47language = { package = "language2", path = "../language2", features = ["test-support"] }
48collections = { path = "../collections", features = ["test-support"] }
49gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
50live_kit_client = { package = "live_kit_client2", path = "../live_kit_client2", features = ["test-support"] }
51project = { package = "project2", path = "../project2", features = ["test-support"] }
52util = { path = "../util", features = ["test-support"] }