git.delta.rocks / unique-network / refs/commits / 0379d3abbc4c

difftreelog

Update README (bulding and testing)

Greg Zaitsev2021-02-01parent: #2131ab2.patch.diff
in: master

1 file changed

modifiedREADME.mddiffbeforeafterboth
5252
532. Remove all installed toolchains with `rustup toolchain list` and `rustup toolchain uninstall <toolchain>`.532. Remove all installed toolchains with `rustup toolchain list` and `rustup toolchain uninstall <toolchain>`.
5454
553. Install Toolchain and make it default:553. Install stable toolchain 1.49.0 and make it default, install nightly 2021-01-27:
5656
57```bash57```bash
58rustup toolchain install 1.49.0
58rustup toolchain install nightly-2020-10-0159rustup toolchain install nightly-2020-10-01
59rustup default nightly-2020-10-0160rustup default nightly-2021-01-27
60```61```
6162
624. Add wasm target for default toolchain:634. Add wasm target for default toolchain:
6364
64```bash65```bash
65rustup target add wasm32-unknown-unknown66rustup target add wasm32-unknown-unknown --toolchain nightly-2021-01-27
66```67```
6768
685. Build:695. Build:
114115
115Additional CLI usage options are available and may be shown by running `cargo run -- --help`.116Additional CLI usage options are available and may be shown by running `cargo run -- --help`.
116117
118## Run Integration Tests
119
1201. Install all needed dependecies
121```
122cd tests
123yarn install
124```
125
1262. Run tests
127```
128yarn test
129```
130
131
117## Benchmarks132## Benchmarks
118133
119First of all, add rust toolchain and make it default.134First of all, add rust toolchain and make it default.