2023-07-03 20:30:04 +00:00
|
|
|
[package]
|
|
|
|
name = "audio"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-07-03 20:30:04 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/audio.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 01:49:58 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
collections.workspace = true
|
2024-01-31 01:49:58 +00:00
|
|
|
derive_more.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
2023-07-03 20:30:04 +00:00
|
|
|
parking_lot.workspace = true
|
2024-01-31 01:49:58 +00:00
|
|
|
rodio = { version = "0.17.1", default-features = false, features = ["wav"] }
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|