neser 1.1.0

NESER - Nintendo Emulation Systems Engine (Rust). Desktop and WebAssembly frontends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Cover art image download and caching.
//!
//! Downloads front boxart and screenshots from TheGamesDB CDN and caches
//! them on disk for the ROM browser. Images are stored in a configurable
//! cache directory (default: `~/.neser/image_cache/`).

#[cfg(feature = "native")]
mod cache;

// Re-exports used by the ROM browser (native frontend).
// TODO: remove allow(unused_imports) once the ROM browser module consumes these.
#[allow(unused_imports)]
#[cfg(feature = "native")]
pub use cache::{CachedImages, ImageCache, ImageCacheProgress};