Skip to content

Commit 8e1e71c

Browse files
committed
docs(collections): improve CPU intrinsics compatibility explanation
Update documentation to clarify that gxhash feature provides performance benefits on systems with CPU intrinsics (AES-NI, SSE2) support, while maintaining compatibility with systems that lack these features.
1 parent f8c1fae commit 8e1e71c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/collections.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//! Collection type aliases that switch between gxhash and std collections
2-
//! based on feature flags. This allows building on docs.rs without CPU-specific
3-
//! requirements while maintaining performance in normal builds.
2+
//! based on feature flags. This allows building on systems without specific
3+
//! CPU intrinsics (AES-NI, SSE2) while providing better performance on systems
4+
//! that support these features.
45
56
#[cfg(feature = "gxhash")]
67
pub use gxhash::{

0 commit comments

Comments
 (0)