one_assert 0.2.0

One assert! to replace them all
Documentation
1
2
3
4
5
6
7
8
error[E0728]: `await` is only allowed inside `async` functions and blocks
 --> tests/fail/expr/await2.rs:3:29
  |
1 | fn main() {
  | --------- this is not `async`
2 |     let fut = async { true };
3 |     one_assert::assert!(fut.await);
  |                             ^^^^^ only allowed inside `async` functions and blocks