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