1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! # Ferrite Image Viewer
//!
//! A fast and efficient image viewer with focus on performance.
//!
//! ## Features
//!
//! - High-performance image loading and caching
//! - Smooth zooming and panning
//! - Directory-based navigation
//! - Configurable UI and controls
//! - Multiple image format support
//!
//! ## Usage
//!
//! ```rust,no_run
//! use ferrite::*;
//!
//! // Create and run the application
//! let config = config::FerriteConfig::load().unwrap_or_default();
//! // ... application setup
//! ```
// Module declarations for the unified crate
// Re-export main application components for convenience
pub use ;
pub use FerriteConfig;
pub use FeriteApp;
pub use ;
// Re-export key types that users might need
pub use ;
pub use SupportedFormats;
pub use ;