starkom-poseidon2 1.0.1

Starkom's implementation of the Poseidon2 algebraic hash.
Documentation
// Copyright 2026 The Libernet Team
// SPDX-License-Identifier: Apache-2.0

pub mod params;
pub mod poseidon;

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

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

pub use poseidon::*;

#[cfg(feature = "bluesky")]
pub use bluesky::*;

#[cfg(feature = "bls12_381")]
pub use bls12_381::*;