0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

docs(contributing): add Rust install notes as prerequisites (#6195)

This commit is contained in:
thomas 2020-06-10 17:16:33 +02:00 committed by GitHub
parent 8f050355ff
commit d9c6b109df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,6 +25,15 @@ Extra steps for Windows users:
### Prerequisites
You will need to [install Rust](https://www.rust-lang.org/tools/install). Make
sure to fetch the latest stable release as Deno does not support nightly builds.
Check that you have the required tools:
```
rustc -V
cargo -V
```
The easiest way to build Deno is by using a precompiled version of V8:
```