mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 13:53:07 +00:00
Fix generic const expressions warning (#984)
* Fix generic const expressions warning. * Also for `bench_recursion` example.
This commit is contained in:
parent
9037ceb0c9
commit
5dfac7155f
@ -4,6 +4,7 @@
|
||||
// `[dev-dependencies]`.
|
||||
|
||||
#![feature(generic_const_exprs)]
|
||||
#![allow(incomplete_features)]
|
||||
#![allow(clippy::upper_case_acronyms)]
|
||||
|
||||
use core::num::ParseIntError;
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
#![allow(clippy::too_many_arguments)]
|
||||
#![allow(clippy::needless_range_loop)]
|
||||
#![allow(clippy::upper_case_acronyms)]
|
||||
#![allow(incomplete_features)]
|
||||
#![feature(generic_const_exprs)]
|
||||
#![cfg_attr(not(feature = "std"), no_std)]
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user