//! Security-first image codecs and processing for Rust.
//!
//! Version 0.5.0 adds explicit sample storage, channel order, chroma
//! subsampling, alpha association, and pixel-to-plane relationships to the
//! validated geometry foundation. Buffer views and codecs remain unavailable
//! until their milestones pass.
extern crate alloc;
extern crate std;
/// Format-neutral image foundations.
pub use mynd_core as core;
/// Checked integer arithmetic for image-data boundaries.
pub use mynd_math as math;