aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 3a74ed3570b6ae983073a923fc4c3eaab6c9758b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#![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 pos;
mod screen;
pub use screen::Screen;