mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-07 17:26:56 +00:00
52 lines
1.5 KiB
TOML
52 lines
1.5 KiB
TOML
[package]
|
|
name = "call2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/call2.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"client2/test-support",
|
|
"collections/test-support",
|
|
"gpui2/test-support",
|
|
"live_kit_client/test-support",
|
|
"project2/test-support",
|
|
"util/test-support"
|
|
]
|
|
|
|
[dependencies]
|
|
audio2 = { path = "../audio2" }
|
|
client2 = { path = "../client2" }
|
|
collections = { path = "../collections" }
|
|
gpui2 = { path = "../gpui2" }
|
|
log.workspace = true
|
|
live_kit_client = { path = "../live_kit_client" }
|
|
fs2 = { path = "../fs2" }
|
|
language2 = { path = "../language2" }
|
|
media = { path = "../media" }
|
|
project2 = { path = "../project2" }
|
|
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]
|
|
client2 = { path = "../client2", features = ["test-support"] }
|
|
fs2 = { path = "../fs2", features = ["test-support"] }
|
|
language2 = { path = "../language2", features = ["test-support"] }
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
gpui2 = { path = "../gpui2", features = ["test-support"] }
|
|
live_kit_client = { path = "../live_kit_client", features = ["test-support"] }
|
|
project2 = { path = "../project2", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|