mirror of https://github.com/bobwen-dev/hunter
add note about rustup/rust-nightly to instructions
This commit is contained in:
parent
a35bf35b6a
commit
312b2c6e66
11
README.md
11
README.md
|
@ -42,6 +42,7 @@ If it works on a system not mentioned here, please open an issue. Also feel free
|
|||
|
||||
* gcc
|
||||
* libmagic-dev
|
||||
* Rust-nighly compiler
|
||||
|
||||
### Debian/Ubuntu
|
||||
|
||||
|
@ -49,6 +50,16 @@ If it works on a system not mentioned here, please open an issue. Also feel free
|
|||
|
||||
## INSTALLATION:
|
||||
|
||||
Compiling hunter currently requires a nighty Rust compiler!
|
||||
The easiest way to get a nightly compiler is with [rustup](https://rustup.rs/). If you have rustup installed it will automatically download and use a version that is known to work when you run cargo.
|
||||
|
||||
### Install rustup
|
||||
|
||||
```
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||
```
|
||||
|
||||
|
||||
### Build with cargo
|
||||
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue