Use draft chapters for "todo" chapters.

This commit is contained in:
Eric Huss 2021-03-04 15:32:51 -08:00 committed by Taiki Endo
parent 2b0aad627c
commit a927107bfe
3 changed files with 9 additions and 8 deletions

View File

@ -9,6 +9,7 @@ create-missing = false
[output.html]
git-repository-url = "https://github.com/rust-lang/async-book"
site-url = "/async-book/"
[output.linkcheck]
follow-web-links = true

View File

View File

@ -16,9 +16,9 @@
- [Executing Multiple Futures at a Time](06_multiple_futures/01_chapter.md)
- [`join!`](06_multiple_futures/02_join.md)
- [`select!`](06_multiple_futures/03_select.md)
- [TODO: Spawning](404.md)
- [TODO: Cancellation and Timeouts](404.md)
- [TODO: `FuturesUnordered`](404.md)
- [TODO: Spawning]()
- [TODO: Cancellation and Timeouts]()
- [TODO: `FuturesUnordered`]()
- [Workarounds to Know and Love](07_workarounds/01_chapter.md)
- [`?` in `async` Blocks](07_workarounds/02_err_in_async_blocks.md)
- [`Send` Approximation](07_workarounds/03_send_approximation.md)
@ -29,8 +29,8 @@
- [Running Asynchronous Code](09_example/01_running_async_code.md)
- [Handling Connections Concurrently](09_example/02_handling_connections_concurrently.md)
- [Testing the Server](09_example/03_tests.md)
- [TODO: I/O](404.md)
- [TODO: `AsyncRead` and `AsyncWrite`](404.md)
- [TODO: Asynchronous Design Patterns: Solutions and Suggestions](404.md)
- [TODO: Modeling Servers and the Request/Response Pattern](404.md)
- [TODO: Managing Shared State](404.md)
- [TODO: I/O]()
- [TODO: `AsyncRead` and `AsyncWrite`]()
- [TODO: Asynchronous Design Patterns: Solutions and Suggestions]()
- [TODO: Modeling Servers and the Request/Response Pattern]()
- [TODO: Managing Shared State]()