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

mod attrs;
mod cell;
mod color;
mod grid;
mod pos;
mod row;
mod screen;

pub use cell::Cell;
pub use color::Color;
pub use screen::Screen;