Add first-pass sound support to Zed

This commit is contained in:
Mikayla Maki 2023-07-03 13:30:04 -07:00
parent 138de37cbf
commit d2127825e3
No known key found for this signature in database
17 changed files with 213 additions and 79 deletions

23
crates/audio/Cargo.toml Normal file
View file

@ -0,0 +1,23 @@
[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 = "0.17.1"
log.workspace = true
anyhow.workspace = true
parking_lot.workspace = true
[dev-dependencies]