mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-12 10:43:07 +00:00
No functional changes here. The biggest change was moving certain files into new directories like `plonk` and `iop` (for things like `Challenger` that could be used in STARKs or other IOPs). I also split a few files, renames, etc, but again nothing functional, so I don't think a careful review is necessary (just a sanity check).
12 lines
267 B
Rust
12 lines
267 B
Rust
pub mod circuit_builder;
|
|
pub mod circuit_data;
|
|
pub(crate) mod copy_constraint;
|
|
pub(crate) mod permutation_argument;
|
|
pub(crate) mod plonk_common;
|
|
pub mod proof;
|
|
pub mod prover;
|
|
pub mod recursive_verifier;
|
|
pub(crate) mod vanishing_poly;
|
|
pub mod vars;
|
|
pub mod verifier;
|