one_assert 0.2.0

One assert! to replace them all
Documentation
1
2
3
4
5
fn main() {
    one_assert::assert!(loop { break });
    one_assert::assert!(loop { break 1 });
    // one_assert::assert!(loop { }); // would be an error logically, but for compiler it just returns `!`, so it's not an error
}