locktree 0.3.0

Experimental compiler-checked deadlock-freedom
Documentation
1
2
3
4
5
6
7
8
9
use locktree::locktree;

locktree! {
    Main {
        mutex: async Mutex<()>
    }
}

fn main() {}