asciigraph-rs 0.1.5

Lightweight ASCII line graphs for the terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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, ZeroLine, Threshold, StatAnnotations, DEFAULT_CHAR_SET, create_char_set
};
pub use crate::asciigraph::{plot, plot_many};