Advent of code tools.
Import the following packages in your crate:
toml
aoc-toolbox = "0.1.0"
aoc-toolbox-derive = "0.1.0"
You can mark solvers in your code:
```rust
fn solveday01part1(filename: Option<&str>) -> String { // ... } ```
And then at the end of your main.rs
, you can call this macro:
rust
aoc_main!(2021);
rust
fn (filename: Option<&str>) -> String;
This tool was intended for my purpose only.
I choosed to release it, so anyone can use it. Enjoy!