zed/crates/call/Cargo.toml

48 lines
1.3 KiB
TOML
Raw Normal View History

2022-09-19 19:01:34 +03:00
[package]
name = "call"
2022-09-19 19:01:34 +03:00
version = "0.1.0"
edition = "2021"
publish = false
2022-09-19 19:01:34 +03:00
[lib]
path = "src/call.rs"
2022-09-19 19:01:34 +03:00
doctest = false
[features]
test-support = [
"client/test-support",
"collections/test-support",
2022-09-19 19:01:34 +03:00
"gpui/test-support",
"live_kit_client/test-support",
2022-09-19 19:01:34 +03:00
"project/test-support",
"util/test-support"
2022-09-19 19:01:34 +03:00
]
[dependencies]
client = { path = "../client" }
collections = { path = "../collections" }
2022-09-19 19:01:34 +03:00
gpui = { path = "../gpui" }
log.workspace = true
2022-10-17 19:00:54 +03:00
live_kit_client = { path = "../live_kit_client" }
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" }
settings = { path = "../settings" }
util = { path = "../util" }
2022-09-19 19:01:34 +03:00
anyhow.workspace = true
2022-10-24 11:04:08 +03:00
async-broadcast = "0.4"
futures.workspace = true
postage.workspace = true
2022-09-19 19:01:34 +03: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"] }
2022-09-19 19:01:34 +03:00
gpui = { path = "../gpui", features = ["test-support"] }
live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
2022-09-19 19:01:34 +03:00
project = { path = "../project", features = ["test-support"] }
util = { path = "../util", features = ["test-support"] }