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