Cargo.toml

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