From 6663648dc3807f516243f4d4889090084cca5e98 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Fri, 3 Jan 2025 21:45:59 +0100 Subject: [PATCH] feat(primitives): re-export foldhash --- crates/primitives/src/map/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/primitives/src/map/mod.rs b/crates/primitives/src/map/mod.rs index ed7c39a02..5d357a525 100644 --- a/crates/primitives/src/map/mod.rs +++ b/crates/primitives/src/map/mod.rs @@ -80,6 +80,10 @@ cfg_if! { } } +#[cfg(feature = "map-foldhash")] +#[doc(no_inline)] +pub use foldhash; + // Default hasher. cfg_if! { if #[cfg(feature = "map-foldhash")] { @@ -119,6 +123,7 @@ cfg_if! { } /// This module contains the rayon parallel iterator types for hash maps (HashMap). +/// /// You will rarely need to interact with it directly unless you have need to name one /// of the iterator types. #[cfg(feature = "rayon")]