1
2
3
4
5
6
7
8
9
10
//! An implemention of the Poseidon permutation for fixed-width
//! hashing.
#![cfg_attr(not(feature = "std"), no_std)]

mod permutation;

pub use permutation::Instance;

#[cfg(feature = "r1cs")]
pub mod r1cs;