mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
53 lines
1.7 KiB
TOML
53 lines
1.7 KiB
TOML
[package]
|
|
name = "call2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/call2.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 = { package = "audio2", path = "../audio2" }
|
|
client = { package = "client2", path = "../client2" }
|
|
collections = { path = "../collections" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
log.workspace = true
|
|
live_kit_client = { package = "live_kit_client2", path = "../live_kit_client2" }
|
|
fs = { package = "fs2", path = "../fs2" }
|
|
language = { package = "language2", path = "../language2" }
|
|
media = { path = "../media" }
|
|
project = { package = "project2", path = "../project2" }
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
util = { path = "../util" }
|
|
|
|
anyhow.workspace = true
|
|
async-broadcast = "0.4"
|
|
futures.workspace = true
|
|
postage.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_derive.workspace = true
|
|
|
|
[dev-dependencies]
|
|
client = { package = "client2", path = "../client2", features = ["test-support"] }
|
|
fs = { package = "fs2", path = "../fs2", features = ["test-support"] }
|
|
language = { package = "language2", path = "../language2", features = ["test-support"] }
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
live_kit_client = { package = "live_kit_client2", path = "../live_kit_client2", features = ["test-support"] }
|
|
project = { package = "project2", path = "../project2", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|