Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ For more information on **running a node for main- or testnet**, see our

## 📝 Prerequisites

- Rust 1.71 nightly or higher
- Rust 1.75 nightly (nightly-2023-11-10)
- GCC 13 or higher
- Clang 16 or higher

Expand All @@ -72,19 +72,6 @@ everything.
bash scripts/dev-setup.sh
```

### Rust Installation

Rusk makes use of the nightly toolchain, make sure it is installed. Furthermore,
to build the WASM contracts, `wasm-pack` is required.

To install and set the nightly toolchain, and install `wasm-pack`, run:

```bash
rustup toolchain install nightly
rustup default nightly
cargo install wasm-pack
```

## 🛠️ Build and Tests

To build `rusk` from source, make sure the prerequisites are met. Then you can
Expand Down
2 changes: 1 addition & 1 deletion scripts/dev-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ install_rust_and_wasm_pack() {

if ! command -v wasm-pack &> /dev/null; then
echo "Installing wasm-pack..."
cargo install wasm-pack
cargo +nightly install wasm-pack
else
echo "wasm-pack is already installed."
fi
Expand Down
Loading