Advent of code tools.
Import the following packages in your crate:
toml
aoc-toolbox = "0.3"
aoc-toolbox-derive = "0.3"
You can mark solvers in your code:
```rust
fn solveday01part1(input: String) -> String { // ... } ```
And then at the end of your main.rs
, you can call this macro:
rust
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!