style: apply rustfmt across current workspace - #451
Merged
Conversation
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.
What and why
Supersedes #448 with a clean-slate formatter sweep generated from current
main, after removal of the RFC-026/WAL implementation and the #450/#447 query merges.This is the verbatim output of
cargo fmt --all: 42 tracked Rust files, +4,873/-4,309 lines. It changes only layout and carries no semantic, dependency, generated-file, documentation, or persisted-format change.Compared with #448, the replacement drops 28 obsolete files from the diff, including all deleted streaming/WAL code.
Verification
cargo fmt --all --checkgit diff --checkbash scripts/check-agents-md.shorigin/mainarchive produced the same 42 files with zero byte mismatches.cargo test --workspace --locked --no-fail-fast: every non-spawn target passed. The external shared target directory prevented two CLI suites from discoveringomnigraph-server; rerunning those exact suites with explicit built binary paths passed: parity 13/13 and system-local 27 passed, 1 credentialed test ignored.Clippy cleanup and a permanent fmt/clippy CI gate remain separate follow-ups.
Greptile Summary
This PR applies
cargo fmt --allacross 42 Rust files without changing program semantics, public interfaces, dependencies, or persisted formats.Confidence Score: 5/5
The PR appears safe to merge because the changes are confined to rustfmt-generated layout and whitespace updates.
No changed expression, control-flow decision, public contract, security boundary, dependency, or persisted representation was identified; the formatter sweep preserves the existing Rust syntax and behavior.
Important Files Changed
Reviews (1): Last reviewed commit: "style: apply rustfmt across current work..." | Re-trigger Greptile