From ccc2a56b81464054806c54ecbe8b1b855a977b70 Mon Sep 17 00:00:00 2001 From: BGluth Date: Thu, 1 Sep 2022 09:32:18 -0700 Subject: [PATCH] Added `let_chains` feature gates - Nightly decided to move this behind a feature gate and caused builds to fail. --- evm/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/evm/src/lib.rs b/evm/src/lib.rs index 0a31a7ba..4b3fc6b9 100644 --- a/evm/src/lib.rs +++ b/evm/src/lib.rs @@ -2,6 +2,7 @@ #![allow(clippy::needless_range_loop)] #![allow(clippy::too_many_arguments)] #![allow(clippy::type_complexity)] +#![feature(let_chains)] #![feature(generic_const_exprs)] pub mod all_stark;