Cargo.toml

 1[package]
 2name = "livekit_client"
 3version = "0.1.0"
 4edition.workspace = true
 5description = "Logic for using LiveKit with GPUI"
 6publish.workspace = true
 7license = "GPL-3.0-or-later"
 8
 9[lints]
10workspace = true
11
12[lib]
13path = "src/lib.rs"
14doctest = false
15
16[[example]]
17name = "test_app"
18
19[features]
20test-support = ["collections/test-support", "gpui/test-support"]
21
22[dependencies]
23anyhow.workspace = true
24async-trait.workspace = true
25collections.workspace = true
26cpal = "0.15"
27futures.workspace = true
28gpui.workspace = true
29gpui_tokio.workspace = true
30http_client_tls.workspace = true
31image.workspace = true
32livekit_api.workspace = true
33log.workspace = true
34nanoid.workspace = true
35parking_lot.workspace = true
36postage.workspace = true
37smallvec.workspace = true
38tokio-tungstenite.workspace = true
39util.workspace = true
40workspace-hack.workspace = true
41
42[target.'cfg(not(all(target_os = "windows", target_env = "gnu")))'.dependencies]
43libwebrtc = { rev = "80bb8f4c9112789f7c24cc98d8423010977806a6", git = "https://github.com/zed-industries/livekit-rust-sdks" }
44livekit = { rev = "80bb8f4c9112789f7c24cc98d8423010977806a6", git = "https://github.com/zed-industries/livekit-rust-sdks", features = ["__rustls-tls"] }
45
46[target.'cfg(target_os = "macos")'.dependencies]
47core-foundation.workspace = true
48core-video.workspace = true
49coreaudio-rs = "0.12.1"
50objc = "0.2"
51
52[dev-dependencies]
53collections = { workspace = true, features = ["test-support"] }
54gpui = { workspace = true, features = ["test-support"] }
55sha2.workspace = true
56simplelog.workspace = true
57
58[build-dependencies]
59serde.workspace = true
60serde_json.workspace = true
61
62[package.metadata.cargo-machete]
63ignored = ["serde_json"]