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[features]
15test-support = [
16 "async-trait",
17 "collections/test-support",
18 "gpui/test-support",
19 "lazy_static",
20 "live_kit_server",
21 "nanoid",
22]
23
24[dependencies]
25collections = { path = "../collections", optional = true }
26gpui = { path = "../gpui", optional = true }
27live_kit_server = { path = "../live_kit_server", optional = true }
28media = { path = "../media" }
29
30anyhow = "1.0.38"
31async-broadcast = "0.4"
32core-foundation = "0.9.3"
33core-graphics = "0.22.3"
34futures = "0.3"
35log = { version = "0.4.16", features = ["kv_unstable_serde"] }
36parking_lot = "0.11.1"
37postage = { version = "0.4.1", features = ["futures-traits"] }
38
39async-trait = { version = "0.1", optional = true }
40lazy_static = { version = "1.4", optional = true }
41nanoid = { version ="0.4", optional = true}
42
43[dev-dependencies]
44collections = { path = "../collections", features = ["test-support"] }
45gpui = { path = "../gpui", features = ["test-support"] }
46live_kit_server = { path = "../live_kit_server" }
47media = { path = "../media" }
48
49anyhow = "1.0.38"
50async-trait = "0.1"
51block = "0.1"
52bytes = "1.2"
53byteorder = "1.4"
54cocoa = "0.24"
55core-foundation = "0.9.3"
56core-graphics = "0.22.3"
57foreign-types = "0.3"
58futures = "0.3"
59hmac = "0.12"
60jwt = "0.16"
61lazy_static = "1.4"
62objc = "0.2"
63parking_lot = "0.11.1"
64serde = { version = "1.0", features = ["derive", "rc"] }
65sha2 = "0.10"
66simplelog = "0.9"
67
68[build-dependencies]
69serde = { version = "1.0", features = ["derive", "rc"] }
70serde_json = { version = "1.0", features = ["preserve_order"] }