โ† All Workshops

MudEngine Part 4: Single-Player Dioxus GUI

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.