asciiframe 1.2.0

Watch any video in the terminal with ASCII
#![forbid(unsafe_code)]
#![warn(warnings, rust_2018_idioms)]
#![warn(clippy::all, clippy::pedantic)]
#![allow(clippy::cast_sign_loss, clippy::cast_possible_truncation)]
mod converter;
mod error;
mod renderer;

pub use converter::*;
pub use error::*;
pub use renderer::*;