dkb-rs 0.0.1-alpha.2

dkb-rs, the old bitmap font renderer which supports Latin, Korean and Japanese. Implemented in Rust
Documentation
#![no_std]

#[cfg(test)]
extern crate std;

mod common;
pub mod hangul;
pub mod kanakanji;
pub mod latin;

pub use common::CharacterRenderer;
pub use common::RenderFailureReason;
pub struct FontRenderer {
    //
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}