ferrite 0.1.28

Fast and efficient image viewer with focus on performance
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Image handling functionality for the Ferrite image viewer.
//!
//! This crate provides image loading, caching, and management capabilities.

pub mod error;
pub mod formats;
pub mod loaders;
pub mod manager;
pub mod operations;

// Re-export primary types
pub use error::ImageError;
pub use formats::SupportedFormats;
pub use loaders::ImageLoader;
pub use manager::ImageManager;
pub use operations::{FileOperationError, FileOperations};