mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-08 08:43:06 +00:00
Most of them were trivial to address; for the remaining warnings I suppressed just the relevant line and added TODOs.
22 lines
430 B
Rust
22 lines
430 B
Rust
#![allow(incomplete_features)]
|
|
#![allow(clippy::too_many_arguments)]
|
|
#![allow(clippy::type_complexity)]
|
|
#![feature(generic_const_exprs)]
|
|
|
|
pub mod config;
|
|
pub mod constraint_consumer;
|
|
mod get_challenges;
|
|
pub mod permutation;
|
|
pub mod proof;
|
|
pub mod prover;
|
|
pub mod recursive_verifier;
|
|
pub mod stark;
|
|
pub mod stark_testing;
|
|
pub mod util;
|
|
pub mod vanishing_poly;
|
|
pub mod vars;
|
|
pub mod verifier;
|
|
|
|
#[cfg(test)]
|
|
pub mod fibonacci_stark;
|