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: README.md
+10-11Lines changed: 10 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -6,33 +6,32 @@ Written by Carl Fredrik Samson, published by Packt
6
6
7
7
## How to use this repository
8
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.
9
+
My clear recommendation is to clone this repository by either clicking on the `<> Code` button and select "Download ZIP" or clone the repository using your preferred git client.
10
10
11
11
Each chapter has its own folder in this repository. Each example is organized as a standalone crate within that folder.
12
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.
13
+
When encountering examples in the book, you might find it easier to read the code in the repository since you'll be able to open it up in the editor of your choice and have appropriate highlighting and formatting.
14
14
15
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
16
17
+
## I'll be going on a plane, how can I use the repository in an offline situation?
18
+
19
+
You'll need to install both `delayserver` and `corofy` locally on your machine while you're online. The process is described below.
20
+
21
+
Most of the examples have no external dependencies, but from chapter 6 onwards
22
+
we will have some of them. 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.
23
+
17
24
## Delayserver
18
25
19
26
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
27
21
28
You have two options for running the delayserver:
22
29
23
-
1. Go to the folder called delayserver and write `cargo run` in a separate terminal window and leave it running there
30
+
1. Go to the folder named `/delayserver` and write `cargo run` in a separate terminal window and leave it running there
24
31
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
32
26
33
## Corofy
27
34
28
35
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
36
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
-
38
37
Asynchronous Programming in Rust, published by Packt
0 commit comments