Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions content/blog/async/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
+++
title = "The State of Async Rust: Runtimes"
date = 2024-02-21
updated = 2026-05-09
updated = 2026-07-30
draft = false
template = "article.html"
[extra]
Expand Down Expand Up @@ -428,13 +428,12 @@ fn main() {

// Receive messages from the channel
for received in rx {
println!("Got: {:?}", received);
println!("Got: {received:?}");
}
}
```

([Link to playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=6f134711236a897f8d5b53cd5798fe37))

([Link to playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2024&gist=fdaf503d054930dacf5b0a921ddb942d))

## Common Prejudice Against Threads

Expand Down
Loading