u8g2-fonts 0.2.0

A text renderer for embedded-graphics, based on u8g2.
Documentation
/// An abstract [U8g2](https://github.com/olikraus/u8g2/wiki/fntlistall) font interface.
///
/// Contains all information to create a [`FontRenderer`](crate::FontRenderer).
///
/// Implemented by [all available fonts](crate::fonts).
pub trait Font {
    #[doc(hidden)]
    const DATA: &'static [u8];
}