plonky2/starky/src/lib.rs
2022-01-27 07:56:22 +01:00

18 lines
388 B
Rust

// TODO: Remove these when crate is closer to being finished.
#![allow(dead_code)]
#![allow(unused_variables)]
#![allow(unreachable_code)]
#![allow(clippy::diverging_sub_expression)]
#![allow(incomplete_features)]
#![feature(generic_const_exprs)]
pub mod config;
pub mod constraint_consumer;
pub mod proof;
pub mod prover;
pub mod stark;
pub mod vars;
#[cfg(test)]
pub mod julia_stark;