summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-10-21 15:49:00 -0700
committerGitHub <noreply@github.com>2019-10-21 15:49:00 -0700
commit978013a215ebae63cd087139514de32bbd36ce11 (patch)
treedcf43cf2ac044ec9031a79901aa6956351c27ee4 /README.md
parent6aa6ebb5bce7b2b8c5b81814b6ea47994f0f54d9 (diff)
fs: move into `tokio` (#1672)
A step towards collapsing Tokio sub crates into a single `tokio` crate (#1318). The `fs` implementation is now provided by the main `tokio` crate. The `fs` functionality may still be excluded from the build by skipping the `fs` feature flag.
Diffstat (limited to 'README.md')
-rw-r--r--README.md33
1 files changed, 0 insertions, 33 deletions
diff --git a/README.md b/README.md
index fccfede4..32e160b7 100644
--- a/README.md
+++ b/README.md
@@ -120,39 +120,6 @@ project.
[guide]: CONTRIBUTING.md
-## Project layout
-
-The `tokio` crate, found at the root, is primarily intended for use by
-application developers. Library authors should depend on the sub crates, which
-have greater guarantees of stability.
-
-The crates included as part of Tokio are:
-
-* [`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.
-
-* [`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-net`]: Event loop that drives I/O resources as well as TCP, UDP, and
- unix domain socket apis.
-
-* [ `tokio-timer`]: Time related APIs.
-
-[`tokio-codec`]: tokio-codec
-[`tokio-current-thread`]: tokio-current-thread
-[`tokio-executor`]: tokio-executor
-[`tokio-fs`]: tokio-fs
-[`tokio-io`]: tokio-io
-[`tokio-macros`]: tokio-macros
-[`tokio-net`]: tokio-net
-[`tokio-timer`]: tokio-timer
-
## Related Projects
In addition to the crates in this repository, the Tokio project also maintains