From d806a095996ab60a6bfef4b5a2687d4fde1614ab Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Mon, 6 Jan 2020 23:00:56 -0800 Subject: [PATCH] Add a section on the async ecosystem to showcase crates that use async-std --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 4661639..8cd3ac5 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,20 @@ documentation] on how to enable them. [cargo-add]: https://github.com/killercup/cargo-edit [features documentation]: https://docs.rs/async-std/#features +## Ecosystem + + * [async-tls](https://crates.io/crates/async-tls) — Async TLS/SSL streams using **Rustls**. + + * [async-native-tls](https://crates.io/crates/async-native-tls) — **Native TLS** for Async. Native TLS for futures and async-std. + + * [async-tungstenite](https://crates.io/crates/async-tungstenite) — Asynchronous **WebSockets** for async-std, tokio, gio and any std Futures runtime. + + * [Tide](https://crates.io/crates/tide) — Serve the web. A modular **web framework** built around async/await. + + * [SQLx](https://crates.io/crates/sqlx) — The Rust **SQL** Toolkit. SQLx is a 100% safe Rust library for Postgres and MySQL with compile-time checked queries. + + * [Surf](https://crates.io/crates/surf) — Surf the web. Surf is a friendly **HTTP client** built for casual Rustaceans and veterans alike. + ## License