mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
6a4cd53fd8
Similar to #20826 but keeps the Swift implementation. There were quite a few changes in the `call` crate, and so that code now has two variants. Closes #13714 Release Notes: - Added preliminary Linux support for voice chat and viewing screenshares. --------- Co-authored-by: Kirill Bulatov <mail4score@gmail.com> Co-authored-by: Kirill Bulatov <kirill@zed.dev> Co-authored-by: Mikayla <mikayla@zed.dev>
67 lines
1.5 KiB
TOML
67 lines
1.5 KiB
TOML
[package]
|
|
name = "livekit_client_macos"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Bindings to LiveKit Swift client SDK"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/livekit_client.rs"
|
|
doctest = false
|
|
|
|
[[example]]
|
|
name = "test_app"
|
|
|
|
[features]
|
|
no-webrtc = []
|
|
test-support = [
|
|
"async-trait",
|
|
"collections/test-support",
|
|
"gpui/test-support",
|
|
"livekit_server",
|
|
"nanoid",
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-broadcast = "0.7"
|
|
async-trait = { workspace = true, optional = true }
|
|
collections = { workspace = true, optional = true }
|
|
futures.workspace = true
|
|
gpui = { workspace = true, optional = true }
|
|
livekit_server = { workspace = true, optional = true }
|
|
log.workspace = true
|
|
media.workspace = true
|
|
nanoid = { workspace = true, optional = true}
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation.workspace = true
|
|
|
|
[target.'cfg(all(not(target_os = "macos")))'.dependencies]
|
|
async-trait = { workspace = true }
|
|
collections = { workspace = true }
|
|
gpui = { workspace = true }
|
|
livekit_server.workspace = true
|
|
nanoid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
async-trait.workspace = true
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
livekit_server.workspace = true
|
|
nanoid.workspace = true
|
|
sha2.workspace = true
|
|
simplelog.workspace = true
|
|
|
|
[build-dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["serde_json"]
|