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"
|
|
|
|
|
|
|
|
[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 = [
|
2022-10-19 20:20:31 +03:00
|
|
|
"async-broadcast",
|
2022-10-19 17:35:34 +03:00
|
|
|
"async-trait",
|
|
|
|
"collections/test-support",
|
|
|
|
"gpui/test-support",
|
|
|
|
"lazy_static",
|
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" }
|
|
|
|
|
2022-09-07 16:18:03 +03:00
|
|
|
anyhow = "1.0.38"
|
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"
|
2022-09-06 22:19:17 +03:00
|
|
|
futures = "0.3"
|
2022-09-08 13:23:36 +03:00
|
|
|
parking_lot = "0.11.1"
|
2022-09-02 21:56:38 +03:00
|
|
|
|
2022-10-19 20:20:31 +03:00
|
|
|
async-broadcast = { version = "0.4", optional = true }
|
|
|
|
async-trait = { version = "0.1", optional = true }
|
|
|
|
lazy_static = { version = "1.4", optional = true }
|
|
|
|
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" }
|
|
|
|
|
|
|
|
anyhow = "1.0.38"
|
2022-10-19 17:35:34 +03:00
|
|
|
async-trait = "0.1"
|
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"
|
|
|
|
futures = "0.3"
|
|
|
|
hmac = "0.12"
|
|
|
|
jwt = "0.16"
|
2022-10-19 17:35:34 +03:00
|
|
|
lazy_static = "1.4"
|
2022-10-18 08:24:48 +03:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
|
|
|
objc = "0.2"
|
|
|
|
parking_lot = "0.11.1"
|
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
|
|
sha2 = "0.10"
|
|
|
|
simplelog = "0.9"
|
|
|
|
|
2022-09-02 21:56:38 +03:00
|
|
|
[build-dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|