@@ -16,7 +16,7 @@ A Rust implementation of the [xxHash] algorithm.
1616# Examples
1717
1818These examples use [ ` XxHash64 ` ] [ ] but the same ideas can be
19- used for [ ` XxHash32 ` ] [ ] or [ ` XxHash3_64 ` ] [ ] .
19+ used for [ ` XxHash32 ` ] [ ] , [ ` XxHash3_64 ` ] [ ] , or [ ` XxHash3_128 ` ] [ ] .
2020
2121## Hashing arbitrary data
2222
@@ -82,15 +82,16 @@ assert_eq!(hash.get(&42), Some(&"the answer"));
8282
8383# Feature Flags
8484
85- | name | description |
86- | ------------| ---------------------------------------------------------------------------------------------------------|
87- | xxhash32 | Include the [ ` XxHash32 ` ] [ ] algorithm |
88- | xxhash64 | Include the [ ` XxHash64 ` ] [ ] algorithm |
89- | xxhash3_64 | Include the [ ` XxHash3_64 ` ] [ ] algorithm |
90- | random | Create random instances of the hashers |
91- | serialize | Serialize and deserialize hasher state with Serde |
92- | std | Use the Rust standard library. Enable this if you want SIMD support in [ ` XxHash3_64 ` ] [ ] |
93- | alloc | Use the Rust allocator library. Enable this if you want to create [ ` XxHash3_64 ` ] [ ] with dynamic secrets |
85+ | name | description |
86+ | -------------| -------------------------------------------------------------------------------------------------------------------------------|
87+ | xxhash32 | Include the [ ` XxHash32 ` ] [ ] algorithm |
88+ | xxhash64 | Include the [ ` XxHash64 ` ] [ ] algorithm |
89+ | xxhash3_64 | Include the [ ` XxHash3_64 ` ] [ ] algorithm |
90+ | xxhash3_128 | Include the [ ` XxHash3_128 ` ] [ ] algorithm |
91+ | random | Create random instances of the hashers |
92+ | serialize | Serialize and deserialize hasher state with Serde |
93+ | std | Use the Rust standard library. Enable this if you want SIMD support in [ ` XxHash3_64 ` ] [ ] or [ ` XxHash3_128 ` ] [ ] |
94+ | alloc | Use the Rust allocator library. Enable this if you want to create [ ` XxHash3_64 ` ] [ ] or [ ` XxHash3_128 ` ] [ ] with dynamic secrets |
9495
9596# Benchmarks
9697
@@ -114,3 +115,4 @@ See benchmarks in the [comparison][] README.
114115[ `XxHash32` ] : crate::XxHash32
115116[ `XxHash64` ] : crate::XxHash64
116117[ `XxHash3_64` ] : crate::XxHash3_64
118+ [ `XxHash3_128` ] : crate::XxHash3_128
0 commit comments