zed/crates/audio/Cargo.toml

23 lines
424 B
TOML
Raw Normal View History

2023-07-03 23:30:04 +03:00
[package]
name = "audio"
version = "0.1.0"
edition = "2021"
publish = false
license = "GPL-3.0-or-later"
[lints]
workspace = true
2023-07-03 23:30:04 +03:00
[lib]
path = "src/audio.rs"
doctest = false
[dependencies]
anyhow.workspace = true
collections.workspace = true
derive_more.workspace = true
gpui.workspace = true
2023-07-03 23:30:04 +03:00
parking_lot.workspace = true
rodio = { version = "0.17.1", default-features = false, features = ["wav"] }
util.workspace = true