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.workspace = true
27futures.workspace = true
28gpui = { workspace = true, features = ["screen-capture", "x11", "wayland", "windows-manifest"] }
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
42rodio = { workspace = true, features = ["wav_output"] }
43
44[target.'cfg(not(any(all(target_os = "windows", target_env = "gnu"), target_os = "freebsd")))'.dependencies]
45libwebrtc = { rev = "5f04705ac3f356350ae31534ffbc476abc9ea83d", git = "https://github.com/zed-industries/livekit-rust-sdks" }
46livekit = { rev = "5f04705ac3f356350ae31534ffbc476abc9ea83d", git = "https://github.com/zed-industries/livekit-rust-sdks", features = [
47    "__rustls-tls"
48] }
49
50[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os = "windows"))'.dependencies]
51scap.workspace = true
52
53[target.'cfg(target_os = "macos")'.dependencies]
54core-foundation.workspace = true
55core-video.workspace = true
56coreaudio-rs = "0.12.1"
57objc.workspace = true
58
59[dev-dependencies]
60collections = { workspace = true, features = ["test-support"] }
61gpui = { workspace = true, features = ["test-support"] }
62sha2.workspace = true
63simplelog.workspace = true
64
65[build-dependencies]
66serde.workspace = true
67serde_json.workspace = true
68
69[package.metadata.cargo-machete]
70ignored = ["serde_json"]