mioco
mioco copied to clipboard
[no longer maintained] Scalable, coroutine-based, fibers/green-threads for Rust. (aka MIO COroutines).
That's about it Both on `crates.io` and in the `Readme.md`
We getting this error when compiling mioco on Rust1.24 private type `src::sync::mpsc::ReceiverCore` in public interface --> /home/cooldude/.cargo/registry/src/github.com-1ecc6299db9ec823/mioco-0.8.1/src/sync/mpsc.rs:35:5 | 35 | type Raw = ReceiverCore; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't leak private type...
Or should I use another tool?
First off, thanks for mioco! Steps to reproduce from b8cc872fa1e5d127b2b4c60cdd133ee7aadd22f2 (macOS 10.12.4, macbook pro with 4 cores): ``` $ cargo build --example http-server $ target/debug/examples/http-server& $ ab http://127.0.0.1:5555/ This is...