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