2022-01-26 00:09:29 -08:00
|
|
|
// 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;
|
2022-01-29 12:49:00 +01:00
|
|
|
mod get_challenges;
|
2022-01-26 00:09:29 -08:00
|
|
|
pub mod proof;
|
|
|
|
|
pub mod prover;
|
|
|
|
|
pub mod stark;
|
|
|
|
|
pub mod vars;
|
2022-01-29 12:49:00 +01:00
|
|
|
pub mod verifier;
|
2022-01-27 07:56:22 +01:00
|
|
|
|
|
|
|
|
#[cfg(test)]
|
2022-01-27 12:58:56 +01:00
|
|
|
pub mod fibonacci_stark;
|
2022-02-04 15:56:59 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
|
pub mod stark_testing;
|