ignite 0.1.6

ignite serves the role as a "batteries included" addon to stdlib providing useful stuff and higher level functions along with abstractions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use log::Log;
use test::Bencher;

#[bench]
fn logrender(b: &mut Bencher) {
    b.iter(|| {
        let mut log = Log::new();
        for _ in 0..512 {
            log.error("This is an error".to_string());
        }
        let _rendered = log.render();
    });
}