summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLucio Franco <luciofranco14@gmail.com>2020-01-21 10:00:18 -0500
committerGitHub <noreply@github.com>2020-01-21 10:00:18 -0500
commit5d82ac2d1e7739a789a6aa014301355d6c0550d9 (patch)
tree07325167b3f64b9604573943f04a66269bbdbdb6 /README.md
parent5bf78d77ada685826b33fd62e69df179f3de8a1c (diff)
readme: Add more related tokio projects (#2128)
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
index b0e4a921..70c66e08 100644
--- a/README.md
+++ b/README.md
@@ -117,14 +117,32 @@ project.
In addition to the crates in this repository, the Tokio project also maintains
several other libraries, including:
+* [`hyper`]: A fast and correct HTTP/1.1 and HTTP/2 implementation for Rust.
+
+* [`tonic`]: A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility.
+
+* [`warp`]: A super-easy, composable, web server framework for warp speeds.
+
+* [`tower`]: A library of modular and reusable components for building robust networking clients and servers.
+
* [`tracing`] (formerly `tokio-trace`): A framework for application-level
tracing and async-aware diagnostics.
+
+* [`rdbc`]: A Rust database connectivity library for MySQL, Postgres and SQLite.
* [`mio`]: A low-level, cross-platform abstraction over OS I/O APIs that powers
`tokio`.
* [`bytes`]: Utilities for working with bytes, including efficient byte buffers.
+* [`loom`]: A testing tool for concurrent Rust code
+
+[`warp`]: https://github.com/seanmonstar/warp
+[`hyper`]: https://github.com/hyperium/hyper
+[`tonic`]: https://github.com/hyperium/tonic
+[`tower`]: https://github.com/tower-rs/tower
+[`loom`]: https://github.com/tokio-rs/loom
+[`rdbc`]: https://github.com/tokio-rs/rdbc
[`tracing`]: https://github.com/tokio-rs/tracing
[`mio`]: https://github.com/tokio-rs/mio
[`bytes`]: https://github.com/tokio-rs/bytes