├── .gitignore ├── .travis.yml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | public 2 | tmp 3 | target 4 | .idea 5 | .DS_Store 6 | Cargo.lock 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: rust 2 | 3 | os: linux 4 | rust: stable 5 | 6 | cache: cargo 7 | 8 | before_script: 9 | - wget https://github.com/kpp/mdBook/releases/download/e2018/mdbook -P ~/.cargo/bin/ && chmod +x ~/.cargo/bin/mdbook 10 | 11 | script: 12 | - mdbook build 13 | 14 | deploy: 15 | provider: pages:git 16 | edge: true 17 | keep_history: false 18 | local_dir: book 19 | token: $GITHUB_API_KEY 20 | on: 21 | branch: master 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tokio book 2 | 3 | Please click [here][1] to view the latest version of the Tokio tutorial. 4 | 5 | The repository currently in use can be found [here][2]. 6 | 7 | [1]: https://tokio.rs/tokio/tutorial 8 | [2]: https://github.com/tokio-rs/website 9 | --------------------------------------------------------------------------------