Skip to content

Commit

Permalink
feat(primitives): re-export foldhash (#839)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Jan 3, 2025
1 parent bbfab8c commit 75d0ee3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crates/primitives/src/map/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")] {
Expand Down Expand Up @@ -119,6 +123,7 @@ cfg_if! {
}

/// This module contains the rayon parallel iterator types for hash maps (HashMap<K, V>).
///
/// You will rarely need to interact with it directly unless you have need to name one
/// of the iterator types.
#[cfg(feature = "rayon")]
Expand Down

0 comments on commit 75d0ee3

Please sign in to comment.