2022-09-02 21:56:38 +03:00
|
|
|
[package]
|
2022-10-14 15:51:13 +03:00
|
|
|
name = "live_kit_client"
|
2022-09-02 21:56:38 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "Bindings to LiveKit Swift client SDK"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2022-09-02 21:56:38 +03:00
|
|
|
[lib]
|
2022-10-14 15:51:13 +03:00
|
|
|
path = "src/live_kit_client.rs"
|
2022-09-02 21:56:38 +03:00
|
|
|
doctest = false
|
|
|
|
|
2022-10-18 08:24:48 +03:00
|
|
|
[[example]]
|
|
|
|
name = "test_app"
|
|
|
|
|
2022-10-19 14:53:40 +03:00
|
|
|
[features]
|
2024-06-15 03:13:31 +03:00
|
|
|
no-webrtc = []
|
2022-10-19 17:35:34 +03:00
|
|
|
test-support = [
|
2023-03-17 17:39:24 +03:00
|
|
|
"async-trait",
|
2022-10-19 17:35:34 +03:00
|
|
|
"collections/test-support",
|
|
|
|
"gpui/test-support",
|
2022-10-19 20:20:31 +03:00
|
|
|
"live_kit_server",
|
2024-02-07 23:04:29 +03:00
|
|
|
"nanoid",
|
2022-10-19 17:35:34 +03:00
|
|
|
]
|
2022-10-19 14:53:40 +03:00
|
|
|
|
2022-09-02 21:56:38 +03:00
|
|
|
[dependencies]
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
2024-03-19 16:31:47 +03:00
|
|
|
async-broadcast = "0.7"
|
2024-01-31 05:41:29 +03:00
|
|
|
async-trait = { workspace = true, optional = true }
|
2024-02-06 22:41:36 +03:00
|
|
|
collections = { workspace = true, optional = true }
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui = { workspace = true, optional = true }
|
|
|
|
live_kit_server = { workspace = true, optional = true }
|
2023-04-25 03:41:55 +03:00
|
|
|
log.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
media.workspace = true
|
2024-04-26 05:37:40 +03:00
|
|
|
nanoid = { workspace = true, optional = true}
|
2023-04-25 03:41:55 +03:00
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
2022-09-02 21:56:38 +03:00
|
|
|
|
2024-01-27 15:38:55 +03:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-02-24 05:18:06 +03:00
|
|
|
core-foundation.workspace = true
|
2024-01-27 15:38:55 +03:00
|
|
|
|
2024-02-14 23:24:12 +03:00
|
|
|
[target.'cfg(all(not(target_os = "macos")))'.dependencies]
|
2024-01-30 05:04:15 +03:00
|
|
|
async-trait = { workspace = true }
|
2024-02-14 23:24:12 +03:00
|
|
|
collections = { workspace = true }
|
|
|
|
gpui = { workspace = true }
|
2024-02-06 22:41:36 +03:00
|
|
|
live_kit_server.workspace = true
|
2024-04-26 05:37:40 +03:00
|
|
|
nanoid.workspace = true
|
2024-01-30 05:04:15 +03:00
|
|
|
|
2022-10-18 08:24:48 +03:00
|
|
|
[dev-dependencies]
|
2023-04-25 03:41:55 +03:00
|
|
|
async-trait.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
live_kit_server.workspace = true
|
2024-04-26 05:37:40 +03:00
|
|
|
nanoid.workspace = true
|
2024-02-26 12:08:57 +03:00
|
|
|
sha2.workspace = true
|
2022-10-18 08:24:48 +03:00
|
|
|
simplelog = "0.9"
|
|
|
|
|
2022-09-02 21:56:38 +03:00
|
|
|
[build-dependencies]
|
2023-04-25 03:41:55 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-26 12:08:57 +03:00
|
|
|
|
|
|
|
[package.metadata.cargo-machete]
|
|
|
|
ignored = ["serde_json"]
|