async-attributes 1.1.1

Experimental language-level polyfills for Async Rust.
Documentation
1
2
3
4
5
#[async_attributes::test]
async fn test() -> std::io::Result<()> {
    assert_eq!(2 * 2, 4);
    Ok(())
}