advent-of-code/2021/src/lib.rs
kageru c6b1ec262f
Add day 11
and the entire grid library from last year
2021-12-11 13:11:34 +01:00

8 lines
167 B
Rust

#![allow(incomplete_features)]
#![feature(generic_const_exprs)]
#![feature(associated_type_bounds)]
#![feature(test)]
pub mod common;
pub mod teststuff;
pub mod grid;