refactor: apply cargo qual code quality rules#353
Merged
RAprogramm merged 6 commits intomainfrom Dec 30, 2025
Merged
Conversation
- Remove 1400+ empty lines from function bodies - Move inline comments to doc blocks where appropriate - Simplify path imports using local use statements - Clean up test files by removing redundant step comments All tests pass, clippy clean.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
* chore: update CHANGELOG.md [skip ci] * chore(deps): bump the minor-and-patch group with 5 updates Bumps the minor-and-patch group with 5 updates: | Package | From | To | | --- | --- | --- | | [serde_json](https://github.com/serde-rs/json) | `1.0.147` | `1.0.148` | | [itoa](https://github.com/dtolnay/itoa) | `1.0.16` | `1.0.17` | | [ryu](https://github.com/dtolnay/ryu) | `1.0.21` | `1.0.22` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.103` | `1.0.104` | | [axum-test](https://github.com/JosephLenton/axum-test) | `18.4.1` | `18.5.0` | Updates `serde_json` from 1.0.147 to 1.0.148 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.147...v1.0.148) Updates `itoa` from 1.0.16 to 1.0.17 - [Release notes](https://github.com/dtolnay/itoa/releases) - [Commits](dtolnay/itoa@1.0.16...1.0.17) Updates `ryu` from 1.0.21 to 1.0.22 - [Release notes](https://github.com/dtolnay/ryu/releases) - [Commits](dtolnay/ryu@1.0.21...1.0.22) Updates `proc-macro2` from 1.0.103 to 1.0.104 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](dtolnay/proc-macro2@1.0.103...1.0.104) Updates `axum-test` from 18.4.1 to 18.5.0 - [Commits](https://github.com/JosephLenton/axum-test/commits) --- updated-dependencies: - dependency-name: serde_json dependency-version: 1.0.148 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: itoa dependency-version: 1.0.17 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: ryu dependency-version: 1.0.22 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: proc-macro2 dependency-version: 1.0.104 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: axum-test dependency-version: 18.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: RA <70325462+RAprogramm@users.noreply.github.com>
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
Stats
Test plan
cargo test --all-features)cargo clippy --all-targets --all-features -- -D warnings)cargo +nightly fmt)