zed/crates/call/Cargo.toml

55 lines
1.6 KiB
TOML
Raw Normal View History

2022-09-19 16:01:34 +00:00
[package]
name = "call"
2022-09-19 16:01:34 +00:00
version = "0.1.0"
edition = "2021"
publish = false
2022-09-19 16:01:34 +00:00
[lib]
path = "src/call.rs"
2022-09-19 16:01:34 +00:00
doctest = false
[features]
test-support = [
"client/test-support",
"collections/test-support",
2022-09-19 16:01:34 +00:00
"gpui/test-support",
"live_kit_client/test-support",
2022-09-19 16:01:34 +00:00
"project/test-support",
"util/test-support"
2022-09-19 16:01:34 +00:00
]
[dependencies]
audio = { package = "audio2", path = "../audio2" }
2022-09-19 16:01:34 +00:00
client = { path = "../client" }
collections = { path = "../collections" }
gpui = { package = "gpui2", path = "../gpui2" }
log.workspace = true
live_kit_client = { package = "live_kit_client2", path = "../live_kit_client2" }
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" }
settings = { package = "settings2", path = "../settings2" }
util = { path = "../util" }
2022-09-19 16:01:34 +00:00
anyhow.workspace = true
2022-10-24 08:04:08 +00:00
async-broadcast = "0.4"
futures.workspace = true
image = "0.23"
postage.workspace = true
schemars.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_derive.workspace = true
smallvec.workspace = true
2022-09-19 16:01:34 +00:00
[dev-dependencies]
client = { path = "../client", features = ["test-support"] }
fs = { path = "../fs", features = ["test-support"] }
language = { path = "../language", features = ["test-support"] }
collections = { path = "../collections", features = ["test-support"] }
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
live_kit_client = { package = "live_kit_client2", path = "../live_kit_client2", features = ["test-support"] }
2022-09-19 16:01:34 +00:00
project = { path = "../project", features = ["test-support"] }
util = { path = "../util", features = ["test-support"] }