advent-of-code/.cargo/config
Felix Spöttel 363c2e105b feat: download puzzle descriptions
* 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 remove tmp file logic
2022-12-05 23:09:38 +01:00

7 lines
195 B
Text

[alias]
scaffold = "run --bin scaffold --quiet --release -- "
download = "run --bin download --quiet --release -- "
read = "run --bin read --quiet --release -- "
solve = "run --bin"
all = "run"