Explore >> Select a destination


You are here

without.boats
| | tmandry.gitlab.io
3.4 parsecs away

Travel
| | For just about as long as I've been working on async Rust, the topic of scoped tasks has come up. These areasync tasks that borrow from their environment, and they would come in handy in a lot of situations. Last year the standard library stabilized thread::scope which allows synchronous threads to do this. You could imagine a similar API, but with async: asyncfn fanout(data: &Vec){task::scope(|s|{// Spawn subtasks to run in parallel.
| | tokio.rs
3.5 parsecs away

Travel
| | Tokio is a runtime for writing reliable asynchronous applications with Rust. It provides async I/O, networking, scheduling, timers, and more.
| | aturon.github.io
3.7 parsecs away

Travel
| | [AI summary] This blog post introduces Rust's zero-cost futures library, which enables efficient asynchronous I/O programming by providing high-level abstractions that compile down to low-level state-machine code without runtime overhead.
| | rusz.space
24.4 parsecs away

Travel
| Size-coding in Rust, and making a 149 Byte Hello World! and a 540 Byte Brainfuck interpreter.