ferrite_image/
lib.rs

1//! Image handling functionality for the Ferrite image viewer.
2//!
3//! This crate provides image loading, caching, and management capabilities.
4
5mod error;
6mod formats;
7mod manager;
8
9// Re-export primary types
10pub use error::ImageError;
11pub use formats::SupportedFormats;
12pub use manager::ImageManager;