Fix unused import in graphics::image

This commit is contained in:
Héctor Ramón Jiménez 2025-11-15 04:59:23 +01:00
parent a1bebcc520
commit 41d930bd00
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -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)]