async-attributes icon indicating copy to clipboard operation
async-attributes copied to clipboard

Experimental language-level polyfills for Async Rust

Results 7 async-attributes issues
Sort by recently updated
recently updated
newest added

## The What When using the `#[async_attributes::main]` macro and compiling a rust program with a syntax error in the main function, the user would be met with a big, intrusive,...

It would be very valuable for documenting test utils to have `cargo check` be able to run on `#[async_attributes::test]` function in doctests. For example, the obvious errors here would have...

enhancement

Right now, it looks like this will always execute using `async_std::task::block_on`. I bet that will work great for most scenarios, and if that's intended to be the full scope of...

The current `#[bench]` attribute is broken because #7 was merged without testing. code: ```rust #![feature(test)] extern crate test; use async_std::task; #[async_attributes::bench] async fn bench(b: &mut test::Bencher) { b.iter(|| { println!("hello...

https://github.com/taiki-e/pin-project, ref https://github.com/async-rs/async-std/pull/203. Re-exporting proc macros isn't possible, so we'll have to vendor code with proper attribution and licensing.