Cargo.toml

 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" }
34ui = {package = "ui2", path = "../ui2"}
35workspace = {package = "workspace2", path = "../workspace2"}
36async-trait.workspace = true
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 = { package = "client2", path = "../client2", features = ["test-support"] }
50fs = { package = "fs2", path = "../fs2", features = ["test-support"] }
51language = { package = "language2", path = "../language2", features = ["test-support"] }
52collections = { path = "../collections", features = ["test-support"] }
53gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
54live_kit_client = { package = "live_kit_client2", path = "../live_kit_client2", features = ["test-support"] }
55project = { package = "project2", path = "../project2", features = ["test-support"] }
56util = { path = "../util", features = ["test-support"] }