advent-of-code/2020/src/lib.rs

6 lines
141 B
Rust
Raw Normal View History

#![allow(incomplete_features)]
2021-07-08 19:05:31 +02:00
#![feature(const_generics, const_evaluatable_checked, test)]
2020-12-10 14:44:42 +01:00
pub mod common;
2020-12-11 10:18:58 +01:00
pub mod grid;
pub mod teststuff;