coz 0.1.3

Rust support for the `coz` Causal Profiler: https://github.com/plasma-umass/coz
Documentation
const A: usize = 2_000_000_000;
const B: usize = (A as f64 * 1.2) as usize;

fn main() {
    coz::thread_init();

    let a = std::thread::spawn(move || {
        coz::thread_init();
        for _ in 0..A {
            coz::progress!("a");
        }
    });
    let b = std::thread::spawn(move || {
        coz::thread_init();
        for _ in 0..B {
            coz::progress!("b");
        }
    });
    a.join().unwrap();
    b.join().unwrap();
}