zed/crates/call/Cargo.toml

57 lines
1.5 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
license = "GPL-3.0-or-later"
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 = { path = "../audio" }
2022-09-19 16:01:34 +00:00
client = { path = "../client" }
collections = { path = "../collections" }
gpui = { path = "../gpui" }
log.workspace = true
live_kit_client = { path = "../live_kit_client" }
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 = { path = "../settings" }
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 = { path = "../gpui", features = ["test-support"] }
live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
2022-09-19 16:01:34 +00:00
project = { path = "../project", features = ["test-support"] }
util = { path = "../util", features = ["test-support"] }