1//! An implemention of the Poseidon permutation for fixed-width 2//! hashing. 3#![cfg_attr(not(feature = "std"), no_std)] 4 5mod permutation; 6 7pub use permutation::Instance;