2022-01-26 00:09:29 -08:00
|
|
|
#![allow(incomplete_features)]
|
2022-02-15 08:35:57 +01:00
|
|
|
#![allow(clippy::too_many_arguments)]
|
2022-02-22 10:37:08 +01:00
|
|
|
#![allow(clippy::type_complexity)]
|
2022-01-26 00:09:29 -08:00
|
|
|
#![feature(generic_const_exprs)]
|
2022-11-04 16:04:10 -07:00
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
|
|
|
|
|
|
extern crate alloc;
|
|
|
|
|
|
|
|
|
|
mod get_challenges;
|
2022-01-26 00:09:29 -08:00
|
|
|
|
|
|
|
|
pub mod config;
|
|
|
|
|
pub mod constraint_consumer;
|
2022-02-16 01:33:59 -08:00
|
|
|
pub mod permutation;
|
2022-01-26 00:09:29 -08:00
|
|
|
pub mod proof;
|
|
|
|
|
pub mod prover;
|
2022-02-07 10:41:52 +01:00
|
|
|
pub mod recursive_verifier;
|
2022-01-26 00:09:29 -08:00
|
|
|
pub mod stark;
|
2022-02-04 16:02:45 +01:00
|
|
|
pub mod stark_testing;
|
2022-03-16 17:37:34 -07:00
|
|
|
pub mod util;
|
2022-02-21 10:18:05 +01:00
|
|
|
pub mod vanishing_poly;
|
2022-01-26 00:09:29 -08:00
|
|
|
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;
|