You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reproduced on pristine origin/main (7b058b5): `cargo fmt --all -- --check`
exited 1 with 13 diff blocks across 3 crates. Applied `cargo fmt --all`
(canonical formatter, no manual edits) and verified --check now exits 0.
Affected files (4):
- crates/terraphim_mcp_search/src/lib.rs (1 block: use-list reorder)
- crates/terraphim_mcp_search/src/search.rs (5 blocks: line wrapping)
- crates/terraphim_rlm/src/mcp_tools.rs (6 blocks: use-list, closures)
- crates/terraphim_tinyclaw/src/main.rs (1 block)
Zero behavioural change — rustfmt is semantics-preserving. This is the fmt
gate; the 3 clippy errors in mcp_tools.rs (doc_lazy_continuation x2,
redundant_closure x1) are a separate concern tracked by #3008 and addressed
by open PR #3012. PR #3012 fixes only those 3 clippy lines and leaves the
fmt drift intact (verified: its own mcp_tools.rs is still fmt-dirty), so
this PR does not duplicate it. Whichever PR merges second may need a
trivial rebase on mcp_tools.rs (both are behaviour-preserving).
Verification:
- cargo fmt --all -- --check : exit 0 (was exit 1, 13 blocks)
- Diff vs origin/main: 4 files, +24/-29
Refs #3013
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments