From 26092b0638341ab73383206e864a6dcc2672a461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20du=20Garreau?= Date: Fri, 20 Oct 2023 22:04:27 +0200 Subject: [PATCH] Fix build with minimp3 --- src/decoder/mp3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decoder/mp3.rs b/src/decoder/mp3.rs index 7e14e2cb..b40118cc 100644 --- a/src/decoder/mp3.rs +++ b/src/decoder/mp3.rs @@ -3,7 +3,7 @@ use std::time::Duration; use crate::Source; -use minimp3::{Decoder, Frame}; +use minimp3_fixed::{Decoder, Frame}; pub struct Mp3Decoder where