1#![cfg_attr(feature = "nightly", feature(portable_simd))] 2// image_formats 3// by Desmond Germans, 2019 4 5mod image; 6pub use image::*; 7 8pub mod bmp; 9pub mod png; 10pub mod jpeg; 11