From 8b49a1e05fa8d070c4d9582beb7491b284f1556a Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Mon, 8 Jul 2019 13:34:39 -0700 Subject: [PATCH] chore: update examples link in README (#1274) --- README.md | 6 +++++- tokio/examples/README.md | 6 ++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 tokio/examples/README.md diff --git a/README.md b/README.md index 2eedbad8e..8dab1c3bd 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,11 @@ fn main() { } ``` -More examples can be found [here](tokio/examples). +More examples can be found [here](tokio/examples). Note that the `master` branch +is currently being updated to use `async` / `await`. The examples are +not fully ported. Examples for stable Tokio can be found +[here](https://github.com/tokio-rs/tokio/tree/v0.1.x/tokio/examples). + ## Getting Help diff --git a/tokio/examples/README.md b/tokio/examples/README.md new file mode 100644 index 000000000..802d0aa49 --- /dev/null +++ b/tokio/examples/README.md @@ -0,0 +1,6 @@ +## Examples of how to use Tokio + +The `master` branch is currently being updated to use `async` / `await`. +The examples are not fully ported. Examples for stable Tokio can be +found +[here](https://github.com/tokio-rs/tokio/tree/v0.1.x/tokio/examples).