From d43c0e1f0ade189647b39b905b82ee1471893a81 Mon Sep 17 00:00:00 2001 From: Isaac Mills Date: Sun, 30 Jan 2022 04:04:08 -0500 Subject: [PATCH] Add back repwaducabiwaty --- Cargo.toml | 2 +- src/seeder.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index af9256e..b3cfd88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ exclude = [ name = "uwuify" [dependencies] -clap = { version = "3.0.13", features = ["derive"] } +clap = "3.0.13" rand = "0.8.4" indicatif = "0.16.2" linkify = "0.8.0" diff --git a/src/seeder.rs b/src/seeder.rs index c5e04ee..976bf48 100644 --- a/src/seeder.rs +++ b/src/seeder.rs @@ -15,7 +15,7 @@ impl UwUSeeder { #[inline] pub fn new(word: &[u8], random: bool) -> UwUSeeder { let entropy = if !random { - let mut hasher = ahash::AHasher::default(); + let mut hasher = ahash::AHasher::new_with_keys(1234, 5678); hasher.write(word); hasher.finish() } else {