fspoettel / advent-of-code-rust

🎄Starter template for solving Advent of Code in Rust.
MIT License
713 stars 54 forks source link

Replace aoc-cli with aoc-client? #32

Closed fspoettel closed 1 year ago

fspoettel commented 1 year ago

https://github.com/scarvalhojr/aoc-cli/tree/main/aoc-client

This would reduce the amount of setup work required and also make this interaction a bit safer. On the downside, we would now have to compile the aoc_client crate before running stuff, which is fairly slow.

fspoettel commented 1 year ago

Closing for now: while this works, this has the unintended side effect of compiling aoc_client into each separate solution binary, which slows down builds drastically.

Can re-open if this template moves to using modules (may or may not happen).