mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-10 01:33: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
175 B
Rust
12 lines
175 B
Rust
#![feature(destructuring_assignment)]
|
|
|
|
pub mod field;
|
|
pub mod fri;
|
|
pub mod gadgets;
|
|
pub mod gates;
|
|
pub mod hash;
|
|
pub mod iop;
|
|
pub mod plonk;
|
|
pub mod polynomial;
|
|
pub mod util;
|