asciigraph-rs 0.1.1

Lightweight ASCII line graphs for the terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Library entry

pub mod color;
pub mod options;
pub mod utils;
pub mod legend;
pub mod asciigraph;

pub use crate::color::AnsiColor;
pub use crate::options::{CharSet, Config, DEFAULT_CHAR_SET, create_char_set};
pub use crate::asciigraph::{plot, plot_many};