Make 2020 compile again

This commit is contained in:
kageru 2021-11-22 14:34:40 +01:00
parent a65c137864
commit 111a56880f
3 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,3 @@
#![feature(iter_map_while)]
#![feature(test)]
#![allow(clippy::ptr_arg)]
extern crate test;

View File

@ -1,5 +1,5 @@
#![allow(incomplete_features)]
#![feature(test, const_generics, const_evaluatable_checked)]
#![feature(test, generic_const_exprs)]
extern crate test;
use aoc2020::{
common::*, grid::{self, cell::Cell, *}

View File

@ -1,5 +1,5 @@
#![allow(incomplete_features)]
#![feature(const_generics, const_evaluatable_checked, test)]
#![feature(generic_const_exprs, test)]
pub mod common;
pub mod grid;
pub mod teststuff;