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