feat: download puzzle descriptions (#21)

* add support for downloading puzzle descriptions in `cargo download`
* add `cargo read` command to read puzzles in terminal
* extract `aoc_cli` module
* use `aoc-cli`'s new overwrite option to eliminate temp files
This commit is contained in:
Felix Spöttel
2022-12-06 18:22:40 +01:00
committed by GitHub
parent 7ef01ab32f
commit 4d10812fd3
5 changed files with 193 additions and 78 deletions

View File

@@ -1,6 +1,7 @@
[alias]
scaffold = "run --bin scaffold -- "
download = "run --bin download -- "
scaffold = "run --bin scaffold --quiet --release -- "
download = "run --bin download --quiet --release -- "
read = "run --bin read --quiet --release -- "
solve = "run --bin"
all = "run"