A collection of Advent of Code solutions written in Rust. The complete output of the program with my inputs may be viewed here, more detailed benchmarking can be viewed here.
# run default year
$ cargo run --release
# run specific year
$ cargo run --release -- 2019
# run specific days
$ cargo run --release -- 2022 19 20 21
# run all years
$ cargo run --release -- all
# view additional options
$ cargo run --release -- --help