cargo-darwin 0.2.0

Darwin mutates your code, if your code still passes check tests, then your code isn't enough tested.
Documentation
1
2
3
4
5
6
7
8
use cargo_darwin::run;

fn main() {
    env_logger::init();
    if let Err(report) = run() {
        let _ = dbg!(report);
    }
}