A runtime for writing reliable network applications without compromising speed.| docs.rs
Magical Rust patterns laid out and simplified. Contribute to alexpusch/rust-magic-patterns development by creating an account on GitHub.| GitHub
TLDR: I think that the primary benefit of async/await is that it lets us concisely express complex concurrency; any (potential) performance improvements are just a second-order effect. We should thus judge async primarily based on how it simplifies our code, not how (or if) it makes the code faster.| Kobzol’s blog
Async Rust is powerful. And it can be a pain to work with (and learn). Async Rust can be a pleasure to work with, though, if we can do it without `Send + Sync + 'static`.| Evan Schwartz
Builds Tokio Runtime with custom configuration values.| docs.rs
Yet another programming blog. Thoughts on software and related misadventures.| Bit Bashing
Waits on multiple concurrent branches, returning when the first branch completes, cancelling the remaining branches.| docs.rs
A runtime for writing reliable network applications without compromising speed.| docs.rs
The Tokio runtime.| docs.rs
This is the first post in a series of posts about concurrency in Rust, and the different APIs that| without.boats