#![cfg_attr(feature = "parsed", doc = r#"
Direct access with rusttype (requires the `parsed` feature):
```
let glyph = m5x7::FONT.glyph('A');
```"#)]
#![doc(html_root_url = "https://docs.rs/m5x7/1.0.0")]
pub const BYTES: &'static [u8] = include_bytes!("m5x7.ttf");
#[cfg(feature = "parsed")]
#[macro_use] extern crate lazy_static;
#[cfg(feature = "parsed")]
lazy_static! {
#[cfg(feature = "parsed")]
pub static ref FONT: rusttype::Font<'static> = {
rusttype::Font::from_bytes(BYTES)
.expect("Error parsing m5x7 font")
};
}