Advent of Code solutions in Rust

ci: run clippy on spindle

+3
+3
.tangled/workflows/rust.yml
··· 11 11 - gcc 12 12 - rustc 13 13 - cargo 14 + - clippy 14 15 15 16 steps: 16 17 - name: "Build all projects" 17 18 command: | 18 19 cargo build --release --verbose 20 + - name: "Clippy" 21 + command: "cargo clippy --all-targets"