← All Workshops

MudEngine Part 1: Requirements

Step 2 / 13

Verify the installation

After installation, restart our terminal or reload our shell config, then check that `rustc` and `cargo` are available.

Check versions
rustc --version && cargo --version
Expected output

We should see something like: rustc 1.84.0 (9fc6b4312 2025-01-16) cargo 1.84.0 (66221abde 2024-11-19) The exact version numbers will differ — any stable version from 1.80 onward is fine.

Step 2 / 13