Cargo.toml

 1[package]
 2name = "live_kit_client"
 3version = "0.1.0"
 4edition = "2021"
 5description = "Bindings to LiveKit Swift client SDK"
 6publish = false
 7license = "GPL-3.0-only"
 8
 9
10[lib]
11path = "src/live_kit_client.rs"
12doctest = false
13
14[[example]]
15name = "test_app"
16
17[features]
18test-support = [
19    "async-trait",
20    "collections/test-support",
21    "gpui/test-support",
22    "live_kit_server",
23    "nanoid",
24]
25
26[dependencies]
27collections = { path = "../collections", optional = true }
28gpui = { path = "../gpui", optional = true }
29live_kit_server = { path = "../live_kit_server", optional = true }
30media = { path = "../media" }
31
32anyhow.workspace = true
33async-broadcast = "0.4"
34core-foundation = "0.9.3"
35core-graphics = "0.22.3"
36futures.workspace = true
37log.workspace = true
38parking_lot.workspace = true
39postage.workspace = true
40
41async-trait = { 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"
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