mynd/lib.rs
1#![no_std]
2#![forbid(unsafe_code)]
3#![deny(missing_docs)]
4
5//! Security-first image codecs and processing for Rust.
6//!
7//! Version 0.1.0 is the repository foundation. Codec APIs are not available
8//! until their implementation, conformance, and security milestones pass.
9
10#[cfg(feature = "alloc")]
11extern crate alloc;
12
13#[cfg(any(test, feature = "std"))]
14extern crate std;
15
16/// Format-neutral image foundations.
17pub use mynd_core as core;