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-or-later"
 8
 9[lib]
10path = "src/live_kit_client.rs"
11doctest = false
12
13[[example]]
14name = "test_app"
15
16[features]
17test-support = [
18    "async-trait",
19    "collections/test-support",
20    "gpui/test-support",
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"
33futures.workspace = true
34log.workspace = true
35parking_lot.workspace = true
36postage.workspace = true
37
38async-trait = { workspace = true, optional = true }
39nanoid = { version ="0.4", optional = true}
40
41[target.'cfg(target_os = "macos")'.dependencies]
42core-foundation = "0.9.3"
43
44[target.'cfg(not(target_os = "macos"))'.dependencies]
45async-trait = { workspace = true }
46collections = { path = "../collections", features = ["test-support"] }
47gpui = { path = "../gpui", features = ["test-support"] }
48live_kit_server = { path = "../live_kit_server" }
49
50[dev-dependencies]
51collections = { path = "../collections", features = ["test-support"] }
52gpui = { path = "../gpui", features = ["test-support"] }
53live_kit_server = { path = "../live_kit_server" }
54media = { path = "../media" }
55nanoid = "0.4"
56
57anyhow.workspace = true
58async-trait.workspace = true
59block = "0.1"
60bytes = "1.2"
61byteorder = "1.4"
62foreign-types = "0.3"
63futures.workspace = true
64hmac = "0.12"
65jwt = "0.16"
66parking_lot.workspace = true
67serde.workspace = true
68serde_derive.workspace = true
69sha2 = "0.10"
70simplelog = "0.9"
71
72[build-dependencies]
73serde.workspace = true
74serde_derive.workspace = true
75serde_json.workspace = true