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