//! Reference [`Hasher`] implementations behind feature flags.
//!
//! Each implementation is gated on the matching crate-level feature:
//!
//! | Type | Feature flag | Backing crate |
//! |------------------|--------------|---------------|
//! | `Sha256Hasher` | `sha2` | `sha2` |
//! | `Blake3Hasher` | `blake3` | `blake3` |
//!
//! [`Hasher`]: crate::Hasher
pub use Blake3Hasher;
pub use Sha256Hasher;