1//! An implementation of the FRI low-degree test (LDT).
23#![no_std]
45extern crate alloc;
67mod config;
8mod hiding_pcs;
9mod proof;
10pub mod prover;
11mod two_adic_pcs;
12pub mod verifier;
1314pub use config::*;
15pub use hiding_pcs::*;
16pub use proof::*;
17pub use two_adic_pcs::*;