From 2733cd9345c66761ce310a33c9d65e9e4122cd83 Mon Sep 17 00:00:00 2001 From: Breval Ferrari Date: Mon, 17 Mar 2025 00:32:37 -0400 Subject: [PATCH] remove dasp_sample, use Sample from symphonia instead --- bingus/Cargo.toml | 1 - bingus/src/snd.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/bingus/Cargo.toml b/bingus/Cargo.toml index 4dab652..c183587 100644 --- a/bingus/Cargo.toml +++ b/bingus/Cargo.toml @@ -17,6 +17,5 @@ infer = "0.16" thiserror = "2.0" derive-new = "0.7" strum = { version = "0.26", features = ["derive"] } -dasp_sample = "0.11.0" derive_wrapper = "0.1" symphonia = { version = "0.5.4", features = ["all"] } diff --git a/bingus/src/snd.rs b/bingus/src/snd.rs index 57cd0d3..0b7b8fc 100644 --- a/bingus/src/snd.rs +++ b/bingus/src/snd.rs @@ -1,4 +1,4 @@ -pub use dasp_sample::Sample; +pub use symphonia::core::sample::Sample; mod raw; pub use raw::RawSamples; mod simphonia;