Update readme

* rustfmt no longer in preview
* since virtual manifest, cargo commands no longer require `--all`
This commit is contained in:
Greg Fitzgerald 2019-05-19 19:41:15 -06:00 committed by GitHub
parent a7e160e5c4
commit 44ff25d044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ Install rustc, cargo and rustfmt:
```bash ```bash
$ curl https://sh.rustup.rs -sSf | sh $ curl https://sh.rustup.rs -sSf | sh
$ source $HOME/.cargo/env $ source $HOME/.cargo/env
$ rustup component add rustfmt-preview $ rustup component add rustfmt
``` ```
If your rustc version is lower than 1.34.0, please update it: If your rustc version is lower than 1.34.0, please update it:
@ -66,7 +66,7 @@ $ cd solana
Build Build
```bash ```bash
$ cargo build --all $ cargo build
``` ```
Then to run a minimal local cluster Then to run a minimal local cluster
@ -80,7 +80,7 @@ Testing
Run the test suite: Run the test suite:
```bash ```bash
$ cargo test --all $ cargo test
``` ```
Local Testnet Local Testnet