Advent of Code solutions in Rust

ci: add workflow for building project on tangled spindle

+19
+19
.tangled/workflows/rust.yml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["main"] 4 + - event: ["pull_request"] 5 + branch: ["main"] 6 + 7 + engine: "nixery" 8 + 9 + dependencies: 10 + nixpkgs: 11 + - pkg-config 12 + - gcc 13 + - openssl 14 + - rustc 15 + - cargo 16 + 17 + steps: 18 + - name: "Build all projects" 19 + command: "cargo build --release --verbose"