fahrenheit
fahrenheit copied to clipboard
toy futures executor 🚒📖🔥
Hi, I try to use mio for sockets usage, so that it would be platform-generic. I test it on Windows and Linux.
``` error[E0433]: failed to resolve: could not find `unix` in `os` --> src\lib.rs:17:14 | 17 | use std::os::unix::io::RawFd; | ^^^^ could not find `unix` in `os` ``` and related errors...
Hi i am playing around with async/await and i have got some issue with reading bytes into `vec` with with_capacity or just new. This is my code for just read...
Hi! First off: thanks so much for making this project! I've learned a lot just by reading it, which is fantastic! ## Observation I was going through the source today...
Firstly, thanks for doing this. I'm trying to get my head around Rust's async/await code, and this is very helpful. If I read this correctly, every call to fahrenheit::run() creates...
Previously when a waker was moved to another thread then woken there (e.g. if a `oneshot::channel` has its tx side moved onto a separate event loop and the rx side...
https://github.com/polachok/fahrenheit/blob/3f2f13399f37efb4aef1d645ac874ffd13c9a7e1/src/lib.rs#L24 I'm a newbie of Rust and kindly ask why we still need a rc here. For lifetime, it's 'static and is safe to use. For shared ownership, we can...