Cargo.toml
1[package]
2name = "audio"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-only"
7
8
9[lib]
10path = "src/audio.rs"
11doctest = false
12
13[dependencies]
14gpui = { path = "../gpui" }
15collections = { path = "../collections" }
16util = { path = "../util" }
17
18
19rodio ={version = "0.17.1", default-features=false, features = ["wav"]}
20
21log.workspace = true
22futures.workspace = true
23anyhow.workspace = true
24parking_lot.workspace = true