async-executor
async-executor copied to clipboard
Async executor
Closes #131
async-executor has a dependency on a really old version of slab. `slab = "0.4.4"` The problem is that this version no longer compiles with any remotely recent version of Rust:...
Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. Changelog Sourced from criterion's changelog. [0.6.0] - 2025-05-17 Changed MSRV bumped to 1.80 The real_blackbox feature no longer has any...
This is a reproduction: ```Rust // async-task v4.4.0 impl RawTask { unsafe fn destory(ptr: _) { // ... // Finally, deallocate the memory reserved by the task. alloc::alloc::dealloc(ptr as *mut...
Currently, the `smol` runtime does not have something similar to `tokio::task_local!` and `async_std::task_local!`. Reference: https://github.com/smol-rs/smol/issues/329