mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
49 lines
1.3 KiB
TOML
49 lines
1.3 KiB
TOML
[package]
|
|
name = "call"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/call.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"client/test-support",
|
|
"collections/test-support",
|
|
"gpui/test-support",
|
|
"live_kit_client/test-support",
|
|
"project/test-support",
|
|
"util/test-support"
|
|
]
|
|
|
|
[dependencies]
|
|
audio = { path = "../audio" }
|
|
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" }
|
|
media = { path = "../media" }
|
|
project = { path = "../project" }
|
|
settings = { path = "../settings" }
|
|
util = { path = "../util" }
|
|
|
|
anyhow.workspace = true
|
|
async-broadcast = "0.4"
|
|
futures.workspace = true
|
|
postage.workspace = true
|
|
|
|
[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"] }
|
|
project = { path = "../project", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|