aoc_next/
lib.rs

1// SPDX-FileCopyrightText: 2020 Florian Warzecha <liketechnik@disroot.org>
2//
3// SPDX-License-Identifier: MPL-2.0
4//! Helper library for [Advent of Code](https://adventofcode.com/2020/about).
5//! Inspired by `cargo-aoc`.
6
7pub mod app;
8pub mod input;
9pub mod macros;
10pub mod parser;
11pub mod solution;
12
13pub use app::*;
14pub use parser::{FailableParser, Parser};
15pub use solution::{Solution, Solver};