difftreelog
Update build steps in README and cleanup
in: master
3 files changed
README.mddiffbeforeafterboth5252532. 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>`.5454553. Install Rust Toolchain 1.44.0:553. Install Toolchain and make it default:565657```bash57```bash58rustup install 1.44.058rustup toolchain install nightly-2020-10-0159rustup default nightly-2020-10-0159```60```6061614. Make it default (actual toochain version may be different, so do a `rustup toolchain list` first)624. Add wasm target for default toolchain:6362```bash64```bash63rustup toolchain list65rustup target add wasm32-unknown-unknown64rustup default 1.44.0-x86_64-unknown-linux-gnu65```66```6667675. Install nightly toolchain and add wasm target for it:685. Build:6869```bash69```bash70rustup toolchain install nightly-2020-05-0170cargo build71rustup target add wasm32-unknown-unknown --toolchain nightly-2020-05-01-x86_64-unknown-linux-gnu72```71```7372746. Build:73optionally, build in release:75```bash74```bash76cargo build75cargo build --release77```76```787779## Run78## Run133```132```134133135## UI custom types134## UI custom types135136Moved to [runtime_types.json](./runtime_types.json).137138## Running Integration Tests136139137Moved to [runtime_types.json](./runtime_types.json).140See [tests/README.md](./tests/README.md).tests/READMEdiffbeforeafterbothno changes
tests/README.mddiffbeforeafterbothno changes