mirror of
https://github.com/fluencelabs/fluid
synced 2025-03-15 18:50:48 +00:00
12 lines
224 B
Bash
12 lines
224 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Install Rust
|
||
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||
|
|
||
|
# Install nightly toolchain
|
||
|
rustup toolchain install nightly
|
||
|
|
||
|
# Add WASM target
|
||
|
rustup target add wasm32-unknown-unknown --toolchain nightly
|
||
|
|