summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-04-25 19:22:32 -0700
committerDavid Barsky <dbarsky@amazon.com>2019-04-25 22:22:32 -0400
commit0e400af78c049c4b52fa4cb346237b43218b0ec9 (patch)
treeff9f15c215826f3d3fdd3e9dc4d3f912b109ceba /README.md
parentdf702130d6b3d0c9a84b3cc3851423d99f8274bc (diff)
Async/await polish (#1058)
A general refresh of Tokio's experimental async / await support.
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/README.md b/README.md
index c6dbdbf8..8e901f6c 100644
--- a/README.md
+++ b/README.md
@@ -126,10 +126,6 @@ have greater guarantees of stability.
The crates included as part of Tokio are:
-* [`tokio-async-await`]: Experimental `async` / `await` support.
-
-* [`tokio-codec`]: Utilities for encoding and decoding protocol frames.
-
* [`tokio-current-thread`]: Schedule the execution of futures on the current
thread.
@@ -137,8 +133,14 @@ The crates included as part of Tokio are:
* [`tokio-fs`]: Filesystem (and standard in / out) APIs.
+* [`tokio-futures`]: Experimental `std::future::Future` and `async` / `await` support.
+
+* [`tokio-codec`]: Utilities for encoding and decoding protocol frames.
+
* [`tokio-io`]: Asynchronous I/O related traits and utilities.
+* [`tokio-macros`]: Macros for usage with Tokio.
+
* [`tokio-reactor`]: Event loop that drives I/O resources (like TCP and UDP
sockets).
@@ -154,12 +156,13 @@ The crates included as part of Tokio are:
* [`tokio-uds`]: Unix Domain Socket bindings for use with `tokio-io` and
`tokio-reactor`.
-[`tokio-async-await`]: tokio-async-await
[`tokio-codec`]: tokio-codec
[`tokio-current-thread`]: tokio-current-thread
[`tokio-executor`]: tokio-executor
[`tokio-fs`]: tokio-fs
+[`tokio-futures`]: tokio-futures
[`tokio-io`]: tokio-io
+[`tokio-macros`]: tokio-macros
[`tokio-reactor`]: tokio-reactor
[`tokio-tcp`]: tokio-tcp
[`tokio-threadpool`]: tokio-threadpool