Closed Shubham8287 closed 1 month ago
hashbrown updated their default hasher - https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md#v0150---2024-10-01. Which is conflicting with DefaultHashBuilder in our custom types.
hashbrown
DefaultHashBuilder
start initialising using ::default() to fix this.
::default()
N/A
1
Successful compiling should be enough.
I'm a bit confused here as to what is broken about the current build, as master seems to pass when doing cargo clippy --tests --benches --all.
cargo clippy --tests --benches --all
Description of Changes
hashbrown
updated their default hasher - https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md#v0150---2024-10-01. Which is conflicting withDefaultHashBuilder
in our custom types.start initialising using
::default()
to fix this.API and ABI breaking changes
N/A
Expected complexity level and risk
1
Testing
Successful compiling should be enough.