executor icon indicating copy to clipboard operation
executor copied to clipboard

A minimalistic async/await executor for Rust

Results 2 executor issues
Sort by recently updated
recently updated
newest added

This unit test reports undefined behavior in miri: ```rust #[test] fn oops() { executor::run(async { let (s, r) = async_channel::unbounded(); std::thread::spawn(move || { s.send_blocking("42").unwrap(); }); // Receive the value. let...

I would love to use this little function like I have been using `tokio::runtime::Runtime::new().unwrap().block_on`, which will return the result of the future so that I can easily move on with...