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" }
49
50anyhow.workspace = true
51async-trait.workspace = true
52block = "0.1"
53bytes = "1.2"
54byteorder = "1.4"
55cocoa = "0.24"
56core-foundation = "0.9.3"
57core-graphics = "0.22.3"
58foreign-types = "0.3"
59futures.workspace = true
60hmac = "0.12"
61jwt = "0.16"
62lazy_static.workspace = true
63objc = "0.2"
64parking_lot.workspace = true
65serde.workspace = true
66serde_derive.workspace = true
67sha2 = "0.10"
68simplelog = "0.9"
69
70[build-dependencies]
71serde.workspace = true
72serde_derive.workspace = true
73serde_json.workspace = true