Implement ROADMAP Phase 5: code hygiene, bump to v0.5.0#37
Merged
gvonness-apolitical merged 3 commits intomainfrom Mar 14, 2026
Merged
Implement ROADMAP Phase 5: code hygiene, bump to v0.5.0#37gvonness-apolitical merged 3 commits intomainfrom
gvonness-apolitical merged 3 commits intomainfrom
Conversation
- Enable #![warn(missing_docs)] and document all public items - Add #[must_use] to 19 pure functions across library - Add SAFETY comments and debug_assert! guards to GPU u32 casts - Decompose tests/stde.rs (1630 lines) into 5 focused test files
All roadmap phases (0–5) are done. Bump minor version to reflect the code hygiene improvements (missing_docs, must_use, GPU cast audit, test decomposition). Update SECURITY.md to cover >= 0.5.0 and CHANGELOG.md with the 0.5.0 release entry.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
#![warn(missing_docs)]crate-wide and document all public items (~230 items)#[must_use]to 19 pure functions across librarydebug_assert!guards to all GPUas u32caststests/stde.rs(1630 lines, 76 tests) into 5 focused test filesTest plan
cargo clippy -- -D warningsclean (including GPU features)cargo clippy -- -W clippy::must_use_candidatereports 0 candidatescargo checkwith all features produces 0 warningscargo fmt --checkpasses