D - Useful Development Tools
Oxide is built on the Rust toolchain, so many Rust tools apply directly. These tools help you format, lint, test, and document your projects.
Formatting
cargo fmtformats your code using rustfmt rules.
Linting
cargo clippyruns Clippy lints to catch common mistakes and style issues.
Documentation
cargo doc --opengenerates API documentation.
Testing
cargo testruns your unit and integration tests.
Editor Support
rust-analyzerpowers IDE features like autocomplete and inline errors.
Other Useful Tools
cargo auditchecks dependencies for known vulnerabilities.cargo expandshows macro expansion output.mirihelps detect undefined behavior in unsafe code.
Tool availability depends on your installed toolchain and system setup.