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 "client2/test-support",
14 "collections/test-support",
15 "gpui2/test-support",
16 "live_kit_client/test-support",
17 "project2/test-support",
18 "util/test-support"
19]
20
21[dependencies]
22audio2 = { path = "../audio2" }
23client2 = { path = "../client2" }
24collections = { path = "../collections" }
25gpui2 = { path = "../gpui2" }
26log.workspace = true
27live_kit_client = { path = "../live_kit_client" }
28fs2 = { path = "../fs2" }
29language2 = { path = "../language2" }
30media = { path = "../media" }
31project2 = { path = "../project2" }
32settings2 = { 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]
45client2 = { path = "../client2", features = ["test-support"] }
46fs2 = { path = "../fs2", features = ["test-support"] }
47language2 = { path = "../language2", features = ["test-support"] }
48collections = { path = "../collections", features = ["test-support"] }
49gpui2 = { path = "../gpui2", features = ["test-support"] }
50live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
51project2 = { path = "../project2", features = ["test-support"] }
52util = { path = "../util", features = ["test-support"] }