Topic/Async

- Pinning Down "Future Is Not Send" Errors | Evan Schwartz: If you use async Rust and Tokio, you are likely to run into some variant of the "future is not Send" compiler error. While transitioning some sequential asyn...

- Concurrent and parallel future execution in Rust: A lot has been written about concurrency and parallelism, so we only briefly define what is needed for this article: Concurrent programming allows us to run two or more computations in overlapping per

- Introduction - Hello async Rust:

- Caio's Stuff:

- Justin Beaurivage's Blog: Version 0.20.0 of the atsamd-hal project was recently released. With it comes its first official support for async peripheral APIs. To mark the occasion, I wanted to share my experience writing futures from scratch on microcontrollers, and help demistify this sometimes complex, yet incredibly useful tool.

- Building Thread-safe Async Primitives in 150 lines of Rust | Amit's Blog: In this post, I’ll go over a simple, yet fast implementation of the (commonly seen) “oneshot” channel, going through lower-level asynchronous Rust, synchronization primitives, all alongside the unseen footguns of concurrent code

- Exploring Async Runtimes by Building our Own :: KataShift: Who needs tokio?

- Async Rust in Three Parts:
- Async Rust, Part One: Futures
- Async Rust, Part Two: Tasks
- Async Rust, Part Three: IO

- Rust Async I/O: Futures, Thread Pools: Learn how Rust's async system enhances performance by utilizing futures, wakers, and thread pools for non-blocking I/O operations

- Build with Naz : Create an async shell in Rust - YouTube: This video shows how you can build an async REPL or shell in Rust, using the r3bl_terminal_async crate. This example simply creates a long running bash proce...

- Mastering Dependency Injection in Rust: Crafting a Custom Container - chesedo: Learn how to implement a custom Dependency Injection (DI) container in Rust. This comprehensive guide covers various dependency types, lifetimes, and advanced patterns, providing a solid foundation for building modular and testable Rust applications.
- Mastering Dependency Injection in Rust: Despatma basics
- Mastering Dependency Injection in Rust: Despatma with Lifetimes

- tracing tokio resources - hēg denu - Hayden Stainsby:

- Async Rust for Dummies: Introduction Hello, Rustaceans! I'm quite sure many of you use async Rust every day in your projects, but do you actually know how it works under the hood? In…