1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/// AVIF encoding support #[cfg(feature = "avif")] pub mod avif; /// MozJpeg encoding support #[cfg(feature = "mozjpeg")] pub mod mozjpeg; /// OxiPNG encoding support #[cfg(feature = "oxipng")] pub mod oxipng; /// Tiff encoding support #[cfg(feature = "tiff")] pub mod tiff; /// WebP encoding support #[cfg(feature = "webp")] pub mod webp;