Advent of Code solutions in Rust

ci: add workflow for building project on tangled spindle

+17
+17
.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 + - gcc 12 + - rustc 13 + - cargo 14 + 15 + steps: 16 + - name: "Build all projects" 17 + command: "nix-shell -p pkg-config -p openssl cargo build --release --verbose"