Skip to content

Commit 7221fe9

Browse files
Alex Holmbergclaude
authored andcommitted
fix(ci): remove recursive cargo fmt alias that broke CI
The alias `fmt = "fmt --all"` in .cargo/config.toml was recursive, causing CI to fail with "unresolvable recursive definition" error. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 07b2ec9 commit 7221fe9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ t = "test"
99
tr = "test --release"
1010
r = "run"
1111
rr = "run --release"
12-
fmt = "fmt --all"
12+
# Note: cargo fmt alias removed - was recursive and broke CI
1313
clippy = "clippy --all-targets --all-features"

0 commit comments

Comments
 (0)