How to run each excercise:
cargo run --bin day01 ./inputs/day01.txt
# with info logs
RUST_LOG=info cargo run day01 ./inputs/day01.txt
# with debug logs
RUST_LOG=debug cargo run day01 ./inputs/day01.txt
How to build everything:
cargo build --release