coz 0.1.3

Rust support for the `coz` Causal Profiler: https://github.com/plasma-umass/coz
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[test]
fn smoke() {
    coz::progress!();
    coz::progress!("foo");
    coz::begin!("foo");
    coz::end!("foo");
}

#[test]
fn smoke_scoped() {
    coz::scope!("scope");
    let mut x = 1u32;
    x = x + 1;
    assert!(x == 2);
}