diff --git a/Cargo.lock b/Cargo.lock index fd36057..8017b57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2101,6 +2101,7 @@ dependencies = [ "bytemuck", "cpal", "realfft", + "shady-audio", "thiserror 2.0.8", "tracing", "wgpu", diff --git a/shady-lib/Cargo.toml b/shady-lib/Cargo.toml index cfe9441..cd57841 100644 --- a/shady-lib/Cargo.toml +++ b/shady-lib/Cargo.toml @@ -9,13 +9,14 @@ license = "GPL2" [dependencies] bytemuck = { version = "1", features = ["derive"] } +shady-audio = { path = "../shady-audio" } + realfft.workspace = true cpal.workspace = true wgpu.workspace = true tracing.workspace = true thiserror.workspace = true - [features] default = []