cargo-chrono 0.2.0

Cargo tool to benchmark multiple commits and generate plots of the results
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
macro_rules! throw {
    ($e:expr) => {
        return Err($e.into());
    };
    ($fmt:expr, $($arg:tt)+) => {
        return Err(format!($fmt, $($arg)+).into());
    };
}

macro_rules! println_err {
    ($fmt:expr, $($arg:tt)+) => {
        {
            use std::io;
            use std::io::prelude::*;
            writeln!(&mut io::stderr(), $fmt, $($arg)+).unwrap()
        }
    };
}