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: docs-src/0.6/src/getting_started/index.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,14 @@ You can follow the [installation instructions](https://rust-analyzer.github.io/m
23
23
24
24
## Install Rust
25
25
26
-
Head over to [https://rust-lang.org](http://rust-lang.org) and install the Rust compiler.
26
+
Head over to [https://rust-lang.org](http://rust-lang.org) and install the Rust compiler (preferably using `rustup`).
27
+
28
+
Once installed, make sure you add the `stable` toolchain and the `wasm32-unknown-unknown` target for web development:
29
+
30
+
```shell
31
+
rustup toolchain install stable
32
+
rustup target add wasm32-unknown-unknown
33
+
```
27
34
28
35
We strongly recommend going through the [official Rust book](https://doc.rust-lang.org/book/ch01-00-getting-started.html)_completely_. However, we hope that a Dioxus app can serve as a great first Rust project.
0 commit comments