From 2173ab9b2ceb057a030b40a67a7ffc674c166984 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Mon, 30 Sep 2019 15:45:21 -0400 Subject: [PATCH] fix futures utility crate --- posts/2019-09-27-Async-await-hits-beta.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/posts/2019-09-27-Async-await-hits-beta.md b/posts/2019-09-27-Async-await-hits-beta.md index ddac3c109..5f2ed834a 100644 --- a/posts/2019-09-27-Async-await-hits-beta.md +++ b/posts/2019-09-27-Async-await-hits-beta.md @@ -34,10 +34,14 @@ better:** - using [wasm-bindgen-futures], you can even bridge Rust Futures with [JavaScript promises]; - the [hyper library][hyper] has [migrated][hyper#1805] to adopt standard Rust futures; -- finally, in addition to the core runtimes just mentioned, - async-await support is starting to become available in higher-level +- the 0.3.0 version of the [futures-rs library][futures] will support + async-await and will be released by the time async-await hits stable + (you can use the [0.3.0-alpha][] releases now); +- finally, async-await support is starting to become available in higher-level [web frameworks][wf] as well. +[futures]: https://crates.io/crates/futures-preview +[0.3.0-alpha]: https://rust-lang-nursery.github.io/futures-rs/blog/2018/07/19/futures-0.3.0-alpha.1.html [wasm-bindgen-futures]: https://docs.rs/crate/wasm-bindgen-futures/0.2.16 [tokio]: https://tokio.rs/ [actix]: https://actix.rs/