1
2
3
4
5
6
7
8
9
#![warn(missing_docs)]
#![allow(clippy::needless_range_loop)]
#![doc = include_str!("../README.md")]

/// Implementation of Monolith hash function and data structures to employ it in Plonky2
pub mod monolith_hash;

/// Implementation of a Plonky2 gate for Monolith and data structures to employ it in Plonky2 circuits
pub mod gates;