Remove unstable and test feature flags

This commit is contained in:
Michael Vines
2019-03-04 09:00:52 -08:00
parent bb774173bb
commit d708982f27
7 changed files with 6 additions and 10 deletions

View File

@@ -134,7 +134,8 @@ Edit `ci/testnet-manager.sh`
Benchmarking
---
First install the nightly build of rustc. `cargo bench` requires unstable features:
First install the nightly build of rustc. `cargo bench` requires use of the
unstable features only available in the nightly build.
```bash
$ rustup install nightly
@@ -143,7 +144,7 @@ $ rustup install nightly
Run the benchmarks:
```bash
$ cargo +nightly bench --features="unstable"
$ cargo +nightly bench
```
Release Process