1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-08-08 16:26:35 +02:00

Remove reference to discontuned async-std package (#2841)

Fixes #2839.
This commit is contained in:
Dustin J. Mitchell
2025-08-06 03:50:46 -04:00
committed by GitHub
parent 6e2c393364
commit d7f8eb045f

View File

@ -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 - [Tokio](https://tokio.rs/): performant, with a well-developed ecosystem of
functionality like [Hyper](https://hyper.rs/) for HTTP or functionality like [Hyper](https://hyper.rs/) for HTTP or
[Tonic](https://github.com/hyperium/tonic) for gRPC. [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 - [smol](https://docs.rs/smol/latest/smol/): simple and lightweight
Several larger applications have their own runtimes. For example, Several larger applications have their own runtimes. For example,