2022-09-19 19:01:34 +03:00
|
|
|
[package]
|
2022-09-29 18:24:31 +03:00
|
|
|
name = "call"
|
2022-09-19 19:01:34 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2022-09-19 19:01:34 +03:00
|
|
|
|
|
|
|
[lib]
|
2022-09-29 18:24:31 +03:00
|
|
|
path = "src/call.rs"
|
2022-09-19 19:01:34 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = [
|
|
|
|
"client/test-support",
|
2022-09-23 16:05:32 +03:00
|
|
|
"collections/test-support",
|
2022-09-19 19:01:34 +03:00
|
|
|
"gpui/test-support",
|
2022-10-19 14:53:40 +03:00
|
|
|
"live_kit_client/test-support",
|
2022-09-19 19:01:34 +03:00
|
|
|
"project/test-support",
|
2022-09-28 20:02:26 +03:00
|
|
|
"util/test-support"
|
2022-09-19 19:01:34 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
client = { path = "../client" }
|
2022-09-23 16:05:32 +03:00
|
|
|
collections = { path = "../collections" }
|
2022-09-19 19:01:34 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2022-12-14 13:43:12 +03:00
|
|
|
log = "0.4"
|
2022-10-17 19:00:54 +03:00
|
|
|
live_kit_client = { path = "../live_kit_client" }
|
2022-12-20 22:10:46 +03:00
|
|
|
fs = { path = "../fs" }
|
|
|
|
language = { path = "../language" }
|
2022-10-17 19:00:54 +03:00
|
|
|
media = { path = "../media" }
|
2022-09-19 19:01:34 +03:00
|
|
|
project = { path = "../project" }
|
2022-09-28 20:02:26 +03:00
|
|
|
util = { path = "../util" }
|
2022-09-19 19:01:34 +03:00
|
|
|
|
2022-09-26 18:15:53 +03:00
|
|
|
anyhow = "1.0.38"
|
2022-10-24 11:04:08 +03:00
|
|
|
async-broadcast = "0.4"
|
2022-09-26 18:15:53 +03:00
|
|
|
futures = "0.3"
|
2022-10-06 10:50:26 +03:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2022-09-26 18:15:53 +03:00
|
|
|
|
2022-09-19 19:01:34 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2022-12-20 22:10:46 +03:00
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
2022-09-23 16:05:32 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2022-09-19 19:01:34 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2022-10-19 14:53:40 +03:00
|
|
|
live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
|
2022-09-19 19:01:34 +03:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2022-09-28 20:02:26 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|