
Swift bindings BEGONE Release Notes: - Switched from using the Swift LiveKit bindings, to the Rust bindings, fixing https://github.com/zed-industries/zed/issues/9396, a crash when leaving a collaboration session, and making Zed easier to build. --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com> Co-authored-by: Michael Sloan <michael@zed.dev>
62 lines
1.6 KiB
TOML
62 lines
1.6 KiB
TOML
[package]
|
|
name = "livekit_client"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "Logic for using LiveKit with GPUI"
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[[example]]
|
|
name = "test_app"
|
|
|
|
[features]
|
|
test-support = ["collections/test-support", "gpui/test-support"]
|
|
|
|
[dependencies]
|
|
gpui_tokio.workspace = true
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
collections.workspace = true
|
|
cpal = "0.15"
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
livekit_api.workspace = true
|
|
log.workspace = true
|
|
nanoid.workspace = true
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
util.workspace = true
|
|
smallvec.workspace = true
|
|
image.workspace = true
|
|
tokio-tungstenite.workspace = true
|
|
http_client_tls.workspace = true
|
|
|
|
[target.'cfg(not(all(target_os = "windows", target_env = "gnu")))'.dependencies]
|
|
livekit = { rev = "102ebbb1ccfbdbcb7332d86dc30b1b1c8c01e4f8", git = "https://github.com/zed-industries/livekit-rust-sdks", features = ["__rustls-tls"]}
|
|
libwebrtc = { rev = "102ebbb1ccfbdbcb7332d86dc30b1b1c8c01e4f8", git = "https://github.com/zed-industries/livekit-rust-sdks"}
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation.workspace = true
|
|
coreaudio-rs = "0.12.1"
|
|
objc = "0.2"
|
|
core-video.workspace = true
|
|
|
|
[dev-dependencies]
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
sha2.workspace = true
|
|
simplelog.workspace = true
|
|
|
|
[build-dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["serde_json"]
|