diff --git a/src/lib.rs b/src/lib.rs index 7d4b78d..43ac0d8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,9 +8,9 @@ mod constants; #[cfg(feature = "wyhash")] mod hasher; -mod rand; +mod wyrand; mod utils; #[cfg(feature = "wyhash")] pub use hasher::*; -pub use rand::WyRand; +pub use wyrand::WyRand; diff --git a/src/rand.rs b/src/wyrand.rs similarity index 100% rename from src/rand.rs rename to src/wyrand.rs