My system does not have the opus libraries, and updating from 0.37 -> 0.38 began causing my project to crash on an unwrap().
Result::unwrap()` on an `Err` value: "OPUS support not available"
This holds up under a minimal example:
/// Executes on 0.37, but unwraps an error on 0.38 on systems missing codecs
fn main() {
mixer::init(mixer::InitFlag::all()).unwrap();
}
This is almost certainly caused by PR #1459 which is not currently marked as a breaking change
My system does not have the opus libraries, and updating from 0.37 -> 0.38 began causing my project to crash on an unwrap().
Result::unwrap()` on an `Err` value: "OPUS support not available"This holds up under a minimal example:
This is almost certainly caused by PR #1459 which is not currently marked as a breaking change