patch-crate 0.1.13

patch-crate lets rust developer instantly make and keep fixes to rust crate dependencies. It's a vital band-aid for those of us living on the bleeding edge.
Documentation
1
2
3
4
5
6
7
8
9
10
pub fn main() {
    let _ = paris::Logger::new();
    if let Err(err) = patch_crate::run() {
        eprintln!("ERROR: {}", err);
        err.chain()
            .skip(1)
            .for_each(|cause| eprintln!("because: {}", cause));
        std::process::exit(1);
    }
}