1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//! # 8x8 monochrome bitmap fonts for rendering
//!
//! This crate contains a Rust implementation of a public domain 8-bit by 8-bit font.
//!
//! See '../README.md`.
//!
//! # On the miscellanous characters included
//! These characters are provided as-is, and some don't have a proper unicode point.
//! They are provided in the `MISC` and `SGA` contants. For a description, please
//! read the constant documentation.
//!
//! # Credits
//! Initially extracted from an `asm` file, fetched from a now broken link:
//! `http://dimensionalrift.homelinux.net/combuster/mos3/?p=viewsource&file=/modules/gfx/font8_8.asm`
//!
//! It was then ported to a C header file, also in the Public Domain,
//! [https://github.com/dhepper/font8x8](https://github.com/dhepper/font8x8).
//!
//! This crate is an extension of that work.

#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "unicode")]
mod basic;
#[cfg(feature = "unicode")]
mod block;
#[cfg(feature = "unicode")]
#[path = "box.rs"]
mod box_chars;
#[cfg(feature = "unicode")]
mod greek;
#[cfg(feature = "unicode")]
mod hiragana;
#[cfg(feature = "unicode")]
mod latin;
/// Re-export the original `[u8; 8]` constants, taken from C-header files.
pub mod legacy;
#[cfg(feature = "unicode")]
mod misc;
#[cfg(feature = "unicode")]
mod sga;

#[cfg(feature = "unicode")]
pub mod unicode;

#[cfg(feature = "unicode")]
pub use self::basic::BASIC_FONTS;

#[cfg(feature = "unicode")]
pub use self::latin::LATIN_FONTS;

#[cfg(feature = "unicode")]
pub use self::greek::GREEK_FONTS;

#[cfg(feature = "unicode")]
pub use self::block::BLOCK_FONTS;

#[cfg(feature = "unicode")]
pub use self::box_chars::BOX_FONTS;

#[cfg(feature = "unicode")]
pub use self::hiragana::HIRAGANA_FONTS;

#[cfg(feature = "unicode")]
pub use self::misc::MISC_FONTS;

#[cfg(feature = "unicode")]
pub use self::sga::SGA_FONTS;

#[cfg(all(feature = "unicode", feature = "std"))]
pub use self::unicode::FromUtf16Error;
#[cfg(feature = "unicode")]
pub use self::unicode::{FontUnicode, UnicodeFonts};

#[cfg(feature = "std")]
mod core {
    pub use std::*;
}