Skip to content

Commit

Permalink
tweak: Fix compile error with newer version of hashbrown
Browse files Browse the repository at this point in the history
  • Loading branch information
dhedey committed Jan 14, 2025
1 parent cb3ad2f commit ab065b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radix-rust/src/rust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ pub mod collections {
#[cfg(feature = "fuzzing")]
pub type DefaultHashBuilder = crate::rust::collections::stub_hasher::StubHasher;
#[cfg(all(not(feature = "fuzzing"), feature = "alloc"))]
pub type DefaultHashBuilder = hashbrown::hash_map::DefaultHashBuilder;
pub type DefaultHashBuilder = hashbrown::DefaultHashBuilder;
#[cfg(all(not(feature = "fuzzing"), not(feature = "alloc")))]
pub type DefaultHashBuilder = std::collections::hash_map::RandomState;

Expand Down

0 comments on commit ab065b3

Please sign in to comment.