summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-08-15 13:09:02 -0700
committerGitHub <noreply@github.com>2019-08-15 13:09:02 -0700
commit3b27dc31d28df93fcc65ed3b744033d4ad4f77cc (patch)
treea2d7daa747f55e1d8fca83930c093437fc1b5ad9 /README.md
parent37131b21144de133628b54a1de500b623058f8cf (diff)
threadpool: move threadpool into tokio-executor (#1452)
The threadpool is behind a feature flag. Refs: #1264
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 2 insertions, 5 deletions
diff --git a/README.md b/README.md
index 0ce81494..f20ac1f4 100644
--- a/README.md
+++ b/README.md
@@ -129,7 +129,8 @@ have greater guarantees of stability.
The crates included as part of Tokio are:
-* [`tokio-executor`]: Task executors and related utilities.
+* [`tokio-executor`]: Task executors and related utilities. Includes a
+ single-threaded executor and a multi-threaded, work-stealing, executor.
* [`tokio-fs`]: Filesystem (and standard in / out) APIs.
@@ -144,9 +145,6 @@ The crates included as part of Tokio are:
* [`tokio-tcp`]: TCP listener and acceptor.
-* [`tokio-threadpool`]: Schedules the execution of futures across a pool of
- threads.
-
* [ `tokio-timer`]: Time related APIs.
* [`tokio-udp`]: UDP socket.
@@ -161,7 +159,6 @@ The crates included as part of Tokio are:
[`tokio-macros`]: tokio-macros
[`tokio-net`]: tokio-net
[`tokio-tcp`]: tokio-tcp
-[`tokio-threadpool`]: tokio-threadpool
[`tokio-timer`]: tokio-timer
[`tokio-udp`]: tokio-udp
[`tokio-uds`]: tokio-uds