Migrate twox-hash -> xxhash_rust. Switch to Xxh3 for better performance.

xxhash-rust is more maintained, built against `::core`, so no workaround for wasm is necessary. Switch to Xxh3 for better performance, which shows when loading/hashing image buffers.
This commit is contained in:
dtzxporter 2023-09-12 18:15:00 -04:00 committed by Héctor Ramón Jiménez
parent 751ea77c29
commit 98e088e731
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
6 changed files with 8 additions and 19 deletions

View file

@ -16,11 +16,7 @@ pub struct Cache {
hasher: HashBuilder,
}
#[cfg(not(target_arch = "wasm32"))]
type HashBuilder = twox_hash::RandomXxHashBuilder64;
#[cfg(target_arch = "wasm32")]
type HashBuilder = std::hash::BuildHasherDefault<twox_hash::XxHash64>;
type HashBuilder = xxhash_rust::xxh3::Xxh3Builder;
impl Cache {
/// Creates a new empty [`Cache`].