|
1 |
| -# Asynchronous-Programming-in-Rust |
| 1 | +# Asynchronous Programming in Rust |
| 2 | + |
| 3 | +This is the repository for the book: Asynchronous Programming in Rust - learn asynchronous programming from first principles. |
| 4 | + |
| 5 | +Written by Carl Fredrik Samson, published by Packt |
| 6 | + |
| 7 | +## How to use this repository |
| 8 | + |
| 9 | +My clear recommendation is to clone this repository by either click on the `<> Code` button and select "Download ZIP" or clone the repository using your preferred git client. |
| 10 | + |
| 11 | +Each chapter has its own folder in this repository. Each example is organized as a standalone crate within that folder. |
| 12 | + |
| 13 | +When encountering examples in the book, you might find it easier to read in the repository since you'll be able to open it up in the editor of your choice with approperiate highlighting and formatting. |
| 14 | + |
| 15 | +Even if you prefer to write the examples from the book line by line, you'll need the repository for `delayserver` and `corofy` which is two tools I wrote to help in the learning process. |
| 16 | + |
| 17 | +## Delayserver |
| 18 | + |
| 19 | +Most of the examples will use a program called delayserver that's provided in this repository. Delayserver is a simple local webserver where you can write a HTTP GET request with a configurable delay. |
| 20 | + |
| 21 | +You have two options for running the delayserver: |
| 22 | + |
| 23 | +1. Go to the folder called delayserver and write `cargo run` in a separate terminal window and leave it running there |
| 24 | +2. Go to the delayserver and install the server by writing `cargo install --force --path .`. By doing so you install the program locally in you PATH so you can run it from any location by simply writing `delayserver` and leave the terminal process running. |
| 25 | + |
| 26 | +## Corofy |
| 27 | + |
| 28 | +Corofy is another tool that we'll use from chapter 7 onwards. I recommend installing this tool by entering the folder `ch7/corofy` and installing it on your machine by writing `cargo install --force --path .` |
| 29 | + |
| 30 | +## I'll be going on a plane, how can I use the repository in an offline situation? |
| 31 | + |
| 32 | +You'll need to install both delayserver and corofy locally on your machine wile you're online. |
| 33 | + |
| 34 | +Most of the examples has no external dependencies, but from chapter 6 onwards |
| 35 | +we will have one or more external dependencies. The best way to be able to run these examples while offline is to enter each folder and use [cargo vendor](https://doc.rust-lang.org/cargo/commands/cargo-vendor.html) to vendor the dependencies locally. This way you'll be able to build and experiment with the examples even though you'll be offline. |
| 36 | + |
| 37 | + |
2 | 38 | Asynchronous Programming in Rust, published by Packt
|
0 commit comments