tty_overwriter/
lib.rs

1#![deny(missing_docs)]
2
3//! TTY Overwriter
4//! the crate is a small library consisting of two modules :
5//! `ansi_seq` and `Ě€body`
6//! ansi_seq are ansi_sequences to be Written.
7//! body is a small tool which uses ansi sequences to rewrite text to a terminal in a loop without flickering.
8
9/// Easy Ansi Sequences code
10pub mod ansi_seq;
11/// A tool to overwrite to terminal without flickering
12pub mod body;
13
14/// The prelude of the lib, to easily include all you might want to include from the lib
15pub mod prelude {
16    pub use crate::ansi_seq::*;
17    pub use crate::body::*;
18}
19