//! This module contains implementations of trait [`rs_merkle::Hasher`] for other algorithms
//! than [`Sha2-256`](`rs_merkle::algorithms::Sha256`) and [`Sha2-384`](`rs_merkle::algorithms::Sha384`),
//! which are already provided by [`rs_merkle`].
//!
//! These implementations are opt-in and only provided if the corresponding features are enabled.
pub use Blake3;
pub use ;