Cargo.toml

 1[package]
 2name = "live_kit"
 3version = "0.1.0"
 4edition = "2021"
 5description = "Bindings to LiveKit Swift client SDK"
 6
 7[lib]
 8path = "src/live_kit.rs"
 9doctest = false
10
11[dependencies]
12media = { path = "../media" }
13
14anyhow = "1.0.38"
15core-foundation = "0.9.3"
16core-graphics = "0.22.3"
17futures = "0.3"
18parking_lot = "0.11.1"
19
20[build-dependencies]
21serde = { version = "1.0", features = ["derive", "rc"] }
22serde_json = { version = "1.0", features = ["preserve_order"] }