mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 12:02:04 +03:00
f5ba22659b
Co-authored-by: Mikayla <mikayla@zed.dev>
23 lines
409 B
TOML
23 lines
409 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
|
|
futures.workspace = true
|
|
anyhow.workspace = true
|
|
parking_lot.workspace = true
|