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]
26anyhow.workspace = true
27async-broadcast = "0.4"
28async-trait = { workspace = true, optional = true }
29collections = { path = "../collections", optional = true }
30futures.workspace = true
31gpui = { path = "../gpui", optional = true }
32live_kit_server = { path = "../live_kit_server", optional = true }
33log.workspace = true
34media = { path = "../media" }
35nanoid = { version ="0.4", optional = true}
36parking_lot.workspace = true
37postage.workspace = true
38
39[target.'cfg(target_os = "macos")'.dependencies]
40core-foundation = "0.9.3"
41
42[target.'cfg(not(target_os = "macos"))'.dependencies]
43async-trait = { workspace = true }
44collections = { path = "../collections", features = ["test-support"] }
45gpui = { path = "../gpui", features = ["test-support"] }
46live_kit_server = { path = "../live_kit_server" }
47
48[dev-dependencies]
49anyhow.workspace = true
50async-trait.workspace = true
51block = "0.1"
52byteorder = "1.4"
53bytes = "1.2"
54collections = { path = "../collections", features = ["test-support"] }
55foreign-types = "0.3"
56futures.workspace = true
57gpui = { path = "../gpui", features = ["test-support"] }
58hmac = "0.12"
59jwt = "0.16"
60live_kit_server = { path = "../live_kit_server" }
61media = { path = "../media" }
62nanoid = "0.4"
63parking_lot.workspace = true
64serde.workspace = true
65serde_derive.workspace = true
66sha2 = "0.10"
67simplelog = "0.9"
68
69[build-dependencies]
70serde.workspace = true
71serde_derive.workspace = true
72serde_json.workspace = true