zed/crates/call/Cargo.toml

37 lines
927 B
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"
[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",
"project/test-support",
"util/test-support"
2022-09-19 16:01:34 +00:00
]
[dependencies]
client = { path = "../client" }
collections = { path = "../collections" }
2022-10-17 12:50:05 +00:00
live_kit_client = { path = "../live_kit_client" }
2022-09-19 16:01:34 +00:00
gpui = { path = "../gpui" }
project = { path = "../project" }
util = { path = "../util" }
2022-09-19 16:01:34 +00:00
anyhow = "1.0.38"
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"] }
collections = { path = "../collections", features = ["test-support"] }
2022-09-19 16:01:34 +00:00
gpui = { path = "../gpui", features = ["test-support"] }
project = { path = "../project", features = ["test-support"] }
util = { path = "../util", features = ["test-support"] }