#[cfg(all(feature = "costume_png", feature = "costume_svg"))]
compile_error!(
"Features `costume_png` and `costume_svg` are mutually exclusive; enable only one of them."
);
#[cfg(all(not(feature = "costume_png"), not(feature = "costume_svg")))]
compile_error!("Either feature `costume_png` or `costume_svg` must be enabled.");
pub mod decoder;
pub mod error;
pub mod structs;
pub(crate) mod utils;
pub mod prelude;
#[cfg(feature = "costume_png")]
pub use image;
#[cfg(feature = "costume_svg")]
pub use usvg;
#[cfg(test)]
mod tests;