You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: text/2592-futures.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -51,14 +51,14 @@ remaining questions about `async` syntax before it, too, is stabilized.
51
51
52
52
The APIs proposed for stabilization have a lengthy history:
53
53
54
-
- The `Future` trait began with the futures crate; [0.1 was released](http://aturon.github.io/2016/08/11/futures/)
54
+
- The `Future` trait began with the futures crate; [0.1 was released](https://aturon.github.io/tech/2016/08/11/futures/)
55
55
in August of 2016. That release established the core ideas of the task/polling model,
56
56
as well as many other aspects of the API that are retained here. The 0.1 series
57
57
continues to be heavily used throughout the Rust ecosystem and in production systems.
58
58
59
59
- In early 2018, as work began toward `async`/`await`, the futures team set up
60
60
an RFC process and wrote [several RFCs](https://github.com/rust-lang-nursery/futures-rfcs/pulls?q=is%3Apr+is%3Aclosed) to make revisions to the core APIs based
61
-
on longstanding community feedback. These RFCs ultimately resulted in a [0.2le release](http://aturon.github.io/2018/02/27/futures-0-2-RC/), which [shipped](http://aturon.github.io/2018/04/06/futures2/) in April.
61
+
on longstanding community feedback. These RFCs ultimately resulted in a [0.2le release](https://aturon.github.io/tech/2018/02/27/futures-0-2-RC/), which [shipped](https://aturon.github.io/tech/2018/04/06/futures2/) in April.
62
62
63
63
- During the same period, @withoutboats's work on the pinning APIs supporting borrowing
64
64
within `async` blocks [came to completion](https://boats.gitlab.io/blog/post/2018-04-06-async-await-final/).
@@ -438,14 +438,14 @@ So far we've been able to push the task/polling model into virtually every niche
438
438
Rust wishes to occupy, and the main downside has been, in essence, the lack of
439
439
async/await syntax (and
440
440
the
441
-
[borrowing it supports](http://aturon.github.io/2018/04/24/async-borrowing/)).
441
+
[borrowing it supports](https://aturon.github.io/tech/2018/04/24/async-borrowing/)).
442
442
443
443
This RFC does not attempt to provide a complete introduction to the task model
444
444
that originated with the futures crate. A fuller account of the design rationale
445
445
and alternatives can be found in the following two blog posts:
446
446
447
-
-[Zero-cost futures in Rust](http://aturon.github.io/2016/08/11/futures/)
448
-
-[Designing futures for Rust](http://aturon.github.io/2016/09/07/futures-design/)
447
+
-[Zero-cost futures in Rust](https://aturon.github.io/tech/2016/08/11/futures/)
448
+
-[Designing futures for Rust](https://aturon.github.io/tech/2016/09/07/futures-design/)
449
449
450
450
To summarize, the main alternative model for futures is a callback-based approach,
451
451
which was attempted for several months before the current approach was discovered.
0 commit comments