mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 05:00:16 +00:00
d97e780135
This PR restricts access to the `Audio` global to force consumers to go through the `Audio` public interface to interact with it. Release Notes: - N/A
21 lines
469 B
TOML
21 lines
469 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 = { path = "../collections" }
|
|
derive_more.workspace = true
|
|
futures.workspace = true
|
|
gpui = { path = "../gpui" }
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
rodio = { version = "0.17.1", default-features = false, features = ["wav"] }
|
|
util = { path = "../util" }
|