From d7f8eb045f4efbe402875479d339341810e64830 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Wed, 6 Aug 2025 03:50:46 -0400 Subject: [PATCH] Remove reference to discontuned async-std package (#2841) Fixes #2839. --- src/concurrency/async/runtimes.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/concurrency/async/runtimes.md b/src/concurrency/async/runtimes.md index aae19665..f555338d 100644 --- a/src/concurrency/async/runtimes.md +++ b/src/concurrency/async/runtimes.md @@ -11,8 +11,6 @@ not have a "built-in" runtime, but several options are available: - [Tokio](https://tokio.rs/): performant, with a well-developed ecosystem of functionality like [Hyper](https://hyper.rs/) for HTTP or [Tonic](https://github.com/hyperium/tonic) for gRPC. -- [async-std](https://async.rs/): aims to be a "std for async", and includes a - basic runtime in `async::task`. - [smol](https://docs.rs/smol/latest/smol/): simple and lightweight Several larger applications have their own runtimes. For example,