mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-30 22:34:41 +03:00
743f9b345f
We should prefer referring to local deps via `.workspace = true` from now on. Release Notes: - N/A
22 lines
444 B
TOML
22 lines
444 B
TOML
[package]
|
|
name = "audio"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/audio.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
collections.workspace = true
|
|
derive_more.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
rodio = { version = "0.17.1", default-features = false, features = ["wav"] }
|
|
util.workspace = true
|