# Bddap's Advent of Code Runner ![Crates.io](https://img.shields.io/crates/l/bddap-aoc) ![docs.rs](https://img.shields.io/docsrs/bddap-aoc) Organize and run your rust advent of code solutions. ## Usage ```rust #[bddap_aoc::register(2015, 1, 1)] fn runa(_inp: &str) -> String { 42.to_string() } #[bddap_aoc::register(2015, 1, 2)] fn runb(_inp: &str) -> String { "Solution!".to_string() } #[bddap_aoc::register(3243, 2, 1)] fn runc(_inp: &str) -> String { "Future solution!".to_string() } fn main() { bddap_aoc::run_default(); } ``` ```bash cargo run -- login > Enter session cookie from https://adventofcode.com/ : > Session cookie has been saved. cargo run -- run > year 2015 day 1 part 1: > 42 > > year 2015 day 1 part 2: > Solution! > > year 3243 day 2 part 1: > Challenge not yet released. cargo run -- run --year 2015 --day 1 --part 2 > year 2015 day 1 part 2: > Solution! ``` ## License Licensed under either of * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) at your option. ## Contribution Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.