mirror of
https://github.com/fluencelabs/fluid
synced 2025-03-15 02:30:49 +00:00
12 lines
224 B
Bash
Executable File
12 lines
224 B
Bash
Executable File
#!/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
|
|
|