4 releases
Uses old Rust 2015
0.1.3 | Nov 12, 2021 |
---|---|
0.1.2 | Dec 23, 2019 |
0.1.1 | May 13, 2019 |
0.1.0 | Mar 27, 2019 |
#21 in #fix
38 downloads per month
5KB
89 lines
hist
Terminal histograms
extern crate v_hist;
extern crate rand;
use rand::Rng;
fn main() {
let mut h = v_hist::init();
let mut rng = rand::thread_rng();
// h.max_width = 50;
for x in 0..200 {
h.add_entry(format!("{}", x), rng.gen_range(0, 3000)) ;
}
h.draw();
}
and Voila
Credit where credit is due: https://github.com/JustinMMiller/CUtils
Dependencies
~0.7–8MB
~49K SLoC