Cargo.toml

 1[package]
 2name = "live_kit_client2"
 3version = "0.1.0"
 4edition = "2021"
 5description = "Bindings to LiveKit Swift client SDK"
 6publish = false
 7
 8[lib]
 9path = "src/live_kit_client2.rs"
10doctest = false
11
12[[example]]
13name = "test_app2"
14
15[features]
16test-support = [
17    "async-trait",
18    "collections/test-support",
19    "gpui/test-support",
20    "live_kit_server",
21    "nanoid",
22]
23
24[dependencies]
25collections = { path = "../collections", optional = true }
26gpui = { package = "gpui2", path = "../gpui2", optional = true }
27live_kit_server = { path = "../live_kit_server", optional = true }
28media = { path = "../media" }
29
30anyhow.workspace = true
31async-broadcast = "0.4"
32core-foundation = "0.9.3"
33core-graphics = "0.22.3"
34futures.workspace = true
35log.workspace = true
36parking_lot.workspace = true
37postage.workspace = true
38
39async-trait = { workspace = true, optional = true }
40nanoid = { version ="0.4", optional = true}
41
42[dev-dependencies]
43collections = { path = "../collections", features = ["test-support"] }
44gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
45live_kit_server = { path = "../live_kit_server" }
46media = { path = "../media" }
47nanoid = "0.4"
48
49anyhow.workspace = true
50async-trait.workspace = true
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.workspace = true
59hmac = "0.12"
60jwt = "0.16"
61objc = "0.2"
62parking_lot.workspace = true
63serde.workspace = true
64serde_derive.workspace = true
65sha2 = "0.10"
66simplelog = "0.9"
67
68[build-dependencies]
69serde.workspace = true
70serde_derive.workspace = true
71serde_json.workspace = true