Use the following cargo
commands to keep the project clean and well-maintained:
Format the entire codebase with:
cargo fmt
Run Clippy with strict settings to catch issues:
cargo clippy --workspace --all-targets -- -D warnings
--workspace
: Lints all workspace crates.--all-targets
: Lints library, binary, test, and benchmark targets.-D warnings
: Treats all warnings as errors.