//! Fontdue is a font parser, rasterizer, and layout tool.
//!
//! This is a #![no_std] crate, but still requires the alloc crate.
extern crate alloc;
/// Tools for laying out strings of text.
/// Lower level raw data that was parsed from the font. Raw is unstable and prone to change.
pub use crate*;
/// Alias for Result<T, &'static str>.
pub type FontResult<T> = ;