We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6338341 + 6f4bea0 commit d546ee3Copy full SHA for d546ee3
docs/src/tutorial/specification.md
@@ -38,18 +38,10 @@ $ cargo new a-chat
38
$ cd a-chat
39
```
40
41
-At the moment `async-std` requires Rust nightly, so let's add a rustup override for convenience:
42
-
43
-```bash
44
-$ rustup override add nightly
45
-$ rustc --version
46
-rustc 1.38.0-nightly (c4715198b 2019-08-05)
47
-```
48
49
Add the following lines to `Cargo.toml`:
50
51
```toml
52
[dependencies]
53
futures = "0.3.0"
54
-async-std = "1.0.0"
+async-std = "1"
55
0 commit comments