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

mod attrs;
mod cell;
mod grid;
mod row;
mod screen;
mod unicode;

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