1[package]
2name = "call"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/call.rs"
8doctest = false
9
10[features]
11test-support = [
12 "client/test-support",
13 "collections/test-support",
14 "gpui/test-support",
15 "live_kit_client/test-support",
16 "project/test-support",
17 "util/test-support"
18]
19
20[dependencies]
21client = { path = "../client" }
22collections = { path = "../collections" }
23gpui = { path = "../gpui" }
24log = "0.4"
25live_kit_client = { path = "../live_kit_client" }
26fs = { path = "../fs" }
27language = { path = "../language" }
28media = { path = "../media" }
29project = { path = "../project" }
30util = { path = "../util" }
31
32anyhow = "1.0.38"
33async-broadcast = "0.4"
34futures = "0.3"
35postage = { version = "0.4.1", features = ["futures-traits"] }
36
37[dev-dependencies]
38client = { path = "../client", features = ["test-support"] }
39fs = { path = "../fs", features = ["test-support"] }
40language = { path = "../language", features = ["test-support"] }
41collections = { path = "../collections", features = ["test-support"] }
42gpui = { path = "../gpui", features = ["test-support"] }
43live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
44project = { path = "../project", features = ["test-support"] }
45util = { path = "../util", features = ["test-support"] }