[package] name = "xenia-apu" version.workspace = true edition.workspace = true license.workspace = true [dependencies] xenia-types = { workspace = true } xenia-memory = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true } # Raw FFmpeg FFI for the XMA2 audio decoder (stage 3). The system libs are # FFmpeg 6.1 (libavcodec 60), so we pin the matching `6.1` series. The `build` # feature regenerates bindings via bindgen against the installed headers, so # the FFI matches the distro FFmpeg exactly. We only need avcodec + avutil. ffmpeg-sys-next = { version = "6.1", default-features = false, features = ["avcodec"] }