summaryrefslogtreecommitdiffstats
path: root/core/src/hasher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/hasher.rs')
-rw-r--r--core/src/hasher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/hasher.rs b/core/src/hasher.rs
index a13d78af..13180e41 100644
--- a/core/src/hasher.rs
+++ b/core/src/hasher.rs
@@ -1,7 +1,7 @@
/// The hasher used to compare layouts.
#[allow(missing_debug_implementations)] // Doesn't really make sense to have debug on the hasher state anyways.
#[derive(Default)]
-pub struct Hasher(xxhash_rust::xxh3::Xxh3);
+pub struct Hasher(rustc_hash::FxHasher);
impl core::hash::Hasher for Hasher {
fn write(&mut self, bytes: &[u8]) {