aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 3db6c7db157cb353b5b3d08c74653ef464ef7aef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#![warn(clippy::pedantic)]
#![warn(clippy::nursery)]
#![allow(clippy::missing_const_for_fn)]

mod cell;
pub use cell::Cell;
mod color;
pub use color::Color;
mod parser;
mod pos;
mod screen;
pub use screen::Screen;