diff --git a/graphics/src/image.rs b/graphics/src/image.rs index c069fbf9..c05d7499 100644 --- a/graphics/src/image.rs +++ b/graphics/src/image.rs @@ -1,10 +1,10 @@ //! Load and operate on images. #[cfg(feature = "image")] -pub use ::image as image_rs; +use crate::core::Bytes; +use crate::core::Rectangle; use crate::core::image; use crate::core::svg; -use crate::core::{Bytes, Rectangle}; /// A raster or vector image. #[allow(missing_docs)]