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]
22client = { path = "../client" }
23collections = { path = "../collections" }
24gpui = { path = "../gpui" }
25log.workspace = true
26live_kit_client = { path = "../live_kit_client" }
27fs = { path = "../fs" }
28language = { path = "../language" }
29media = { path = "../media" }
30project = { path = "../project" }
31settings = { path = "../settings" }
32util = { path = "../util" }
33
34anyhow.workspace = true
35async-broadcast = "0.4"
36futures.workspace = true
37postage.workspace = true
38
39[dev-dependencies]
40client = { path = "../client", features = ["test-support"] }
41fs = { path = "../fs", features = ["test-support"] }
42language = { path = "../language", features = ["test-support"] }
43collections = { path = "../collections", features = ["test-support"] }
44gpui = { path = "../gpui", features = ["test-support"] }
45live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
46project = { path = "../project", features = ["test-support"] }
47util = { path = "../util", features = ["test-support"] }