zed/crates/call2/Cargo.toml

54 lines
1.8 KiB
TOML
Raw Normal View History

2023-10-24 15:42:51 +00:00
[package]
name = "call2"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/call2.rs"
doctest = false
[features]
test-support = [
2023-11-02 17:55:02 +00:00
"client/test-support",
2023-10-24 15:42:51 +00:00
"collections/test-support",
2023-11-02 17:55:02 +00:00
"gpui/test-support",
"live_kit_client/test-support",
"project/test-support",
2023-10-24 15:42:51 +00:00
"util/test-support"
]
[dependencies]
2023-11-02 17:55:02 +00:00
audio = { package = "audio2", path = "../audio2" }
client = { package = "client2", path = "../client2" }
2023-10-24 15:42:51 +00:00
collections = { path = "../collections" }
2023-11-02 17:55:02 +00:00
gpui = { package = "gpui2", path = "../gpui2" }
2023-10-24 15:42:51 +00:00
log.workspace = true
2023-11-02 17:55:02 +00:00
live_kit_client = { package = "live_kit_client2", path = "../live_kit_client2" }
fs = { package = "fs2", path = "../fs2" }
language = { package = "language2", path = "../language2" }
2023-10-24 15:42:51 +00:00
media = { path = "../media" }
2023-11-02 17:55:02 +00:00
project = { package = "project2", path = "../project2" }
settings = { package = "settings2", path = "../settings2" }
2023-10-24 15:42:51 +00:00
util = { path = "../util" }
2023-11-21 19:18:35 +00:00
workspace = {package = "workspace2", path = "../workspace2"}
async-trait.workspace = true
2023-10-24 15:42:51 +00:00
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]
2023-11-02 17:55:02 +00:00
client = { package = "client2", path = "../client2", features = ["test-support"] }
fs = { package = "fs2", path = "../fs2", features = ["test-support"] }
language = { package = "language2", path = "../language2", features = ["test-support"] }
2023-10-24 15:42:51 +00:00
collections = { path = "../collections", features = ["test-support"] }
2023-11-02 17:55:02 +00:00
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"] }
2023-10-24 15:42:51 +00:00
util = { path = "../util", features = ["test-support"] }