Added let_chains feature gates

- Nightly decided to move this behind a feature gate and caused builds
  to fail.
This commit is contained in:
BGluth 2022-09-01 09:32:18 -07:00
parent 4c52d37546
commit ccc2a56b81

View File

@ -2,6 +2,7 @@
#![allow(clippy::needless_range_loop)] #![allow(clippy::needless_range_loop)]
#![allow(clippy::too_many_arguments)] #![allow(clippy::too_many_arguments)]
#![allow(clippy::type_complexity)] #![allow(clippy::type_complexity)]
#![feature(let_chains)]
#![feature(generic_const_exprs)] #![feature(generic_const_exprs)]
pub mod all_stark; pub mod all_stark;