cargo-chrono 0.2.0

Cargo tool to benchmark multiple commits and generate plots of the results
Documentation
extern crate chrono;
extern crate csv;
extern crate docopt;
#[macro_use]
extern crate error_chain;
extern crate env_logger;
extern crate glob;
extern crate git2;
extern crate gnuplot;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate regex;
extern crate rustc_serialize;
extern crate pbr;
extern crate serde;
#[macro_use]
extern crate serde_derive;

#[macro_use]
mod macros;

mod bench;
mod cli;
mod data;
mod errors;
mod git;
mod plot;

pub use cli::main;