Cargo.toml

 1[package]
 2name = "audio"
 3version = "0.1.0"
 4edition.workspace = true
 5publish.workspace = true
 6license = "GPL-3.0-or-later"
 7
 8[lints]
 9workspace = true
10
11[lib]
12path = "src/audio.rs"
13doctest = false
14
15[dependencies]
16anyhow.workspace = true
17async-tar.workspace = true
18collections.workspace = true
19crossbeam.workspace = true
20gpui.workspace = true
21log.workspace = true
22parking_lot.workspace = true
23rodio = { workspace = true, features = [ "wav", "playback", "wav_output" ] }
24serde.workspace = true
25settings.workspace = true
26smol.workspace = true
27thiserror.workspace = true
28util.workspace = true
29workspace-hack.workspace = true
30
31[target.'cfg(not(any(all(target_os = "windows", target_env = "gnu"), target_os = "freebsd")))'.dependencies]
32libwebrtc = { rev = "5f04705ac3f356350ae31534ffbc476abc9ea83d", git = "https://github.com/zed-industries/livekit-rust-sdks" }