Cargo.toml

 1[package]
 2name = "live_kit_client"
 3version = "0.1.0"
 4edition = "2021"
 5description = "Bindings to LiveKit Swift client SDK"
 6publish = false
 7
 8[lib]
 9path = "src/live_kit_client.rs"
10doctest = false
11
12[[example]]
13name = "test_app"
14
15[features]
16test-support = [
17    "async-trait",
18    "collections/test-support",
19    "gpui/test-support",
20    "lazy_static",
21    "live_kit_server",
22    "nanoid",
23]
24
25[dependencies]
26collections = { path = "../collections", optional = true }
27gpui = { path = "../gpui", optional = true }
28live_kit_server = { path = "../live_kit_server", optional = true }
29media = { path = "../media" }
30
31anyhow.workspace = true
32async-broadcast = "0.4"
33core-foundation = "0.9.3"
34core-graphics = "0.22.3"
35futures.workspace = true
36log.workspace = true
37parking_lot.workspace = true
38postage.workspace = true
39
40async-trait = { workspace = true, optional = true }
41lazy_static = { workspace = true, optional = true }
42nanoid = { version ="0.4", optional = true}
43
44[dev-dependencies]
45collections = { path = "../collections", features = ["test-support"] }
46gpui = { path = "../gpui", features = ["test-support"] }
47live_kit_server = { path = "../live_kit_server" }
48media = { path = "../media" }
49nanoid = "0.4"
50
51anyhow.workspace = true
52async-trait.workspace = true
53block = "0.1"
54bytes = "1.2"
55byteorder = "1.4"
56cocoa = "0.24"
57core-foundation = "0.9.3"
58core-graphics = "0.22.3"
59foreign-types = "0.3"
60futures.workspace = true
61hmac = "0.12"
62jwt = "0.16"
63lazy_static.workspace = true
64objc = "0.2"
65parking_lot.workspace = true
66serde.workspace = true
67serde_derive.workspace = true
68sha2 = "0.10"
69simplelog = "0.9"
70
71[build-dependencies]
72serde.workspace = true
73serde_derive.workspace = true
74serde_json.workspace = true