Cargo.toml

 1[package]
 2name = "live_kit_client"
 3version = "0.1.0"
 4edition = "2021"
 5description = "Bindings to LiveKit Swift client SDK"
 6
 7[lib]
 8path = "src/live_kit_client.rs"
 9doctest = false
10
11[[example]]
12name = "test_app"
13
14[dependencies]
15media = { path = "../media" }
16
17anyhow = "1.0.38"
18core-foundation = "0.9.3"
19core-graphics = "0.22.3"
20futures = "0.3"
21parking_lot = "0.11.1"
22
23[dev-dependencies]
24gpui = { path = "../gpui" }
25live_kit_server = { path = "../live_kit_server" }
26media = { path = "../media" }
27
28anyhow = "1.0.38"
29block = "0.1"
30bytes = "1.2"
31byteorder = "1.4"
32cocoa = "0.24"
33core-foundation = "0.9.3"
34core-graphics = "0.22.3"
35foreign-types = "0.3"
36futures = "0.3"
37hmac = "0.12"
38jwt = "0.16"
39log = { version = "0.4.16", features = ["kv_unstable_serde"] }
40objc = "0.2"
41parking_lot = "0.11.1"
42postage = { version = "0.4.1", features = ["futures-traits"] }
43serde = { version = "1.0", features = ["derive", "rc"] }
44sha2 = "0.10"
45simplelog = "0.9"
46
47[build-dependencies]
48serde = { version = "1.0", features = ["derive", "rc"] }
49serde_json = { version = "1.0", features = ["preserve_order"] }