๐ฆ
๐
Rust advent
Learning Rust by implementing solutions for Advent of Code problems.
And remember to follow and subscribe!
How to run tests for all exercises
Simply execute:
cargo test
If you want to run only one test for a given part of an exercise you can run something like this:
cargo test --package ex01 --lib --all-features -- tests::part_2
Create a new exercise
Cd into the specific year folder (e.g. y2020
) and run:
cargo new --lib exNN
Replace NN
with the number of exercise for the given year. For instance:
cargo new --lib ex01
Finally add the new subproject in the workspace by editing the main Cargo.toml
. For instance, assuming you just created y2020/ex10
:
[workspace]
members = [
"y2020/ex01",
# ...
"y2020/ex10" # <- new entry
]
Contributing
Everyone is very welcome to contribute to this project. You can contribute just by submitting bugs or suggesting improvements by opening an issue on GitHub.
License
Licensed under MIT License. ยฉ Luciano Mammino, Roberto Gambuzzi, Eugen Serbanescu, Stefano Abalsamo.