mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
24 lines
349 B
TOML
24 lines
349 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 = "0.17.1"
|
|
|
|
log.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
parking_lot.workspace = true
|
|
|
|
[dev-dependencies]
|