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
|
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]
|
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",
|
|
|
|
"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]
|
2022-10-19 15:58:50 +03:00
|
|
|
collections = { path = "../collections", optional = true }
|
|
|
|
gpui = { path = "../gpui", optional = true }
|
|
|
|
live_kit_server = { path = "../live_kit_server", optional = true }
|
2022-09-08 13:23:36 +03:00
|
|
|
media = { path = "../media" }
|
|
|
|
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
2022-10-20 10:51:55 +03:00
|
|
|
async-broadcast = "0.4"
|
2022-09-06 22:19:17 +03:00
|
|
|
core-foundation = "0.9.3"
|
2022-09-07 06:19:00 +03:00
|
|
|
core-graphics = "0.22.3"
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
2022-09-02 21:56:38 +03:00
|
|
|
|
2023-04-25 03:41:55 +03:00
|
|
|
async-trait = { workspace = true, optional = true }
|
2022-10-19 20:20:31 +03:00
|
|
|
nanoid = { version ="0.4", optional = true}
|
|
|
|
|
2022-10-18 08:24:48 +03:00
|
|
|
[dev-dependencies]
|
2022-10-19 15:58:50 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2022-10-18 08:24:48 +03:00
|
|
|
live_kit_server = { path = "../live_kit_server" }
|
|
|
|
media = { path = "../media" }
|
2023-05-20 00:20:58 +03:00
|
|
|
nanoid = "0.4"
|
2022-10-18 08:24:48 +03:00
|
|
|
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-trait.workspace = true
|
2022-10-18 08:24:48 +03:00
|
|
|
block = "0.1"
|
|
|
|
bytes = "1.2"
|
|
|
|
byteorder = "1.4"
|
|
|
|
cocoa = "0.24"
|
|
|
|
core-foundation = "0.9.3"
|
|
|
|
core-graphics = "0.22.3"
|
|
|
|
foreign-types = "0.3"
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2022-10-18 08:24:48 +03:00
|
|
|
hmac = "0.12"
|
|
|
|
jwt = "0.16"
|
|
|
|
objc = "0.2"
|
2023-04-25 03:41:55 +03:00
|
|
|
parking_lot.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2022-10-18 08:24:48 +03:00
|
|
|
sha2 = "0.10"
|
|
|
|
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_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|