mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
9ea0ed3e95
This reduces our dep count by 1% at the expense of not supporting playback of .flac, .mp3 and .vorbis formats. We only use .wav anyways. Release Notes: - N/A
24 lines
404 B
TOML
24 lines
404 B
TOML
[package]
|
|
name = "audio"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/audio.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
gpui = { path = "../gpui" }
|
|
collections = { path = "../collections" }
|
|
util = { path = "../util" }
|
|
|
|
rodio ={version = "0.17.1", default-features=false, features = ["wav"]}
|
|
|
|
log.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
parking_lot.workspace = true
|
|
|
|
[dev-dependencies]
|