From aaa78a3a09a4c30a6b727fe6e55ffa1ab58fcd9f Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 4 Sep 2024 17:48:28 +1000 Subject: [PATCH] hashes: Rename util to macros The `utils` module holds public macros, call it `macros` instead. --- hashes/src/lib.rs | 2 +- hashes/src/{util.rs => macros.rs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename hashes/src/{util.rs => macros.rs} (100%) diff --git a/hashes/src/lib.rs b/hashes/src/lib.rs index ef8445778..58d643b42 100644 --- a/hashes/src/lib.rs +++ b/hashes/src/lib.rs @@ -96,7 +96,7 @@ pub mod _export { mod internal_macros; #[macro_use] -mod util; +mod macros; #[macro_use] pub mod serde_macros; diff --git a/hashes/src/util.rs b/hashes/src/macros.rs similarity index 100% rename from hashes/src/util.rs rename to hashes/src/macros.rs