1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![no_std]
#![deny(unsafe_code)]

#[macro_use]
extern crate alloc;

#[macro_use]
mod log;

pub mod font;

mod ansi;
mod buffer;
mod cell;
mod color;
mod config;
mod graphic;
mod terminal;

pub use color::Rgb888;
pub use graphic::DrawTarget;
pub use terminal::Terminal;