Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ of panicking drop implementations.
- Added `from_bytes_truncating_at_nul` to `CString`
- Added `CString::{into_bytes, into_bytes_with_nul, into_string}`
- Added `pop_front_if` and `pop_back_if` to `Deque`
- Bump hash32 dependency to v1.0.0.

## [v0.9.2] 2025-11-12

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ nightly = []
[dependencies]
bytes = { version = "1", default-features = false, optional = true }
portable-atomic = { version = "1.0", optional = true }
hash32 = "0.3.0"
hash32 = "1.0.0"
serde_core = { version = "1", optional = true, default-features = false }
ufmt = { version = "0.2", optional = true }
ufmt-write = { version = "0.1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions src/index_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use core::{
borrow::Borrow,
fmt,
hash::{BuildHasher, Hash},
hash::{BuildHasher, BuildHasherDefault, Hash},
iter::FusedIterator,
mem,
num::NonZeroU32,
Expand All @@ -12,7 +12,7 @@ use core::{
#[cfg(feature = "zeroize")]
use zeroize::Zeroize;

use hash32::{BuildHasherDefault, FnvHasher};
use hash32::FnvHasher;

use crate::Vec;

Expand Down
4 changes: 2 additions & 2 deletions src/index_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
use core::{
borrow::Borrow,
fmt,
hash::{BuildHasher, Hash},
hash::{BuildHasher, BuildHasherDefault, Hash},
};

#[cfg(feature = "zeroize")]
use zeroize::Zeroize;

use hash32::{BuildHasherDefault, FnvHasher};
use hash32::FnvHasher;

use crate::index_map::{self, IndexMap};

Expand Down
Loading