coroutine-rs
coroutine-rs copied to clipboard
Coroutine Library in Rust
Thank you for creating `coroutine-rs` I'm just learning, but it seems Rust has some form of either: coroutines, semiroutines or generators, as was implemented to build async/await into Rust. [Generators...
Can't compile in windows without std::mem import. stack_protected.rs ``` rust #[cfg(windows)] fn page_size() -> usize { unsafe { let mut info = mem::zeroed(); // this fails libc::GetSystemInfo(&mut info); info.dwPageSize as...
This appears to be redundant, please check if this is correct. Thanks
The text "Thread-safe: can only resume a coroutine in one thread simultaneously" in the readme.md might scare people away. Is this meant to mean "does not implement send and/or sync...
``` Compiling coroutine v0.8.0 error[E0432]: unresolved import `std::boxed::FnBox` --> /_/code/.cache_rust/registry/src/github.com-1ecc6299db9ec823/coroutine-0.8.0/src/asymmetric.rs:25:5 | 25 | use std::boxed::FnBox; | ^^^^^^^^^^^^^^^^^ no `FnBox` in `boxed` error[E0554]: `#![feature]` may not be used on the stable...