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
40
41[target.'cfg(not(all(target_os = "windows", target_env = "gnu")))'.dependencies]
42libwebrtc = { rev = "102ebbb1ccfbdbcb7332d86dc30b1b1c8c01e4f8", git = "https://github.com/zed-industries/livekit-rust-sdks" }
43livekit = { rev = "102ebbb1ccfbdbcb7332d86dc30b1b1c8c01e4f8", git = "https://github.com/zed-industries/livekit-rust-sdks", features = ["__rustls-tls"] }
44
45[target.'cfg(target_os = "macos")'.dependencies]
46core-foundation.workspace = true
47core-video.workspace = true
48coreaudio-rs = "0.12.1"
49objc = "0.2"
50
51[dev-dependencies]
52collections = { workspace = true, features = ["test-support"] }
53gpui = { workspace = true, features = ["test-support"] }
54sha2.workspace = true
55simplelog.workspace = true
56
57[build-dependencies]
58serde.workspace = true
59serde_json.workspace = true
60
61[package.metadata.cargo-machete]
62ignored = ["serde_json"]