โ All Workshops
MudEngine Part 4: Single-Player Dioxus GUI
Step 4 / 13
Silence unused-variable warnings
This is an exploratory workshop โ we will leave unused variables, dead code, and other lint noise in place as we iterate. To keep cargo check quiet, add this to your Cargo.toml:
mud-engine/Cargo.toml
[lints.rust] unused = "allow"
๐งช Experiment-friendly
Normally #[allow(unused)] on individual items is preferred, but for a learning project where code is constantly rewritten, a blanket allow keeps the feedback loop fast. You can remove it later when the project stabilises.
Step 4 / 13