starkom-poseidon 2.0.1

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

#![doc = include_str!("../README.md")]

mod params;
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::*;