Skip to content

Commit 622b888

Browse files
committed
Replace minimp3_fixed crate with minimp3 to fix Windows ARM64 build
1 parent bd497eb commit 622b888

File tree

3 files changed

+36
-16
lines changed

3 files changed

+36
-16
lines changed

Cargo.lock

Lines changed: 34 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ serde = { version = "1.0.228", features = ["derive"] }
2626
serde_json = "1.0.145"
2727
rodio = "0.20.1"
2828
reqwest = { version = "0.12.26", features = ["blocking", "json"] }
29-
minimp3_fixed = "0.5.4"
29+
minimp3 = "0.6.1"
3030
clap = { version = "3.2.25", features = ["derive"] }
3131
indicatif = "0.18.3"
3232
console = "0.16.2"

src/mp3_stream_decoder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![allow(dead_code, unused_variables, unused_mut)]
22

3-
use minimp3_fixed::{Decoder, Frame};
3+
use minimp3::{Decoder, Frame};
44
use std::io::Read;
55
use std::time::Duration;
66

0 commit comments

Comments
 (0)