My solutions in Rust to the Advent of Code, 2020 edition.
All the programs are organised in a Cargo workspace. Running the following instructions will build all the programs and, as an example, run the program to solve the Part 1 of the Puzzle 01:
cargo build
cargo run --bin 01-part1 01/input.txt
Most programs do not depend on any external package and can therefore be
build directly with rustc
:
cd 01
rustc main.rs
./main input.txt