I tried to read the following mp3 file: silence.zip.
With rodio 0.14 it works as expected but rodio 0.15 panics when calling Decoder::new_mp3.
I used the following code to read it:
fn main() {
let data = std::io::Cursor::new(include_bytes!("silence.mp3"));
assert!(rodio::decoder::Decoder::new_mp3(data).is_ok());
}