zed/crates/call/Cargo.toml

47 lines
1.3 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]
client = { path = "../client" }
collections = { path = "../collections" }
2022-09-19 16:01:34 +00:00
gpui = { path = "../gpui" }
2022-12-14 10:43:12 +00:00
log = "0.4"
2022-10-17 16:00:54 +00:00
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" }
util = { path = "../util" }
2022-09-19 16:01:34 +00:00
anyhow = "1.0.38"
2022-10-24 08:04:08 +00:00
async-broadcast = "0.4"
futures = "0.3"
2022-10-06 07:50:26 +00:00
postage = { version = "0.4.1", features = ["futures-traits"] }
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"] }
2022-09-19 16:01:34 +00:00
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"] }