mantra 0.6.0

`mantra` offers a lightweight approach for requirement tracing and coverage.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[req(main_id)]
fn traced_fn() {}

#[cfg(test)]
mod test {
    #[test]
    #[req(other_id, bad_id)]
    fn test_fn() {
        traced_fn();
    }
}