Go to file
Lee Bernick 2b0aad627c
Merge pull request #126 from lbernick/runtimes
Clarify usage of runtimes in async book examples
2021-02-22 22:22:23 -05:00
.github/workflows Install latest mdbook 2021-01-05 17:10:12 +09:00
ci Revamped "Why Async" section 2021-02-09 04:49:57 +00:00
examples fix(Chapter 9): ensure src and dst has same size before copy_from_slice 2020-11-17 23:50:08 +08:00
src Clarify usage of runtimes in async book examples 2021-02-19 13:38:38 -05:00
.gitignore
LICENSE
README.md mdbook renderer tries to invoke linkcheck renderer 2020-05-22 23:27:15 +09:00
book.toml

README.md

async-book

Asynchronous Programming in Rust

Requirements

The async book is built with mdbook, you can install it using cargo.

cargo install mdbook
cargo install mdbook-linkcheck

Building

To create a finished book, run mdbook build to generate it under the book/ directory.

mdbook build

Development

While writing it can be handy to see your changes, mdbook serve will launch a local web server to serve the book.

mdbook serve