From 34e638d40c3028c197ee85baf17482d53021b09b Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 4 Sep 2024 17:51:22 +1000 Subject: [PATCH] hashes: Separate private and public modules The private and public modules are already grouped, add a line of whitespace to make it _even_ more clear. Trivial I know, this patch got smaller during rebase. --- hashes/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/hashes/src/lib.rs b/hashes/src/lib.rs index 44aa1e0e0..ef8445778 100644 --- a/hashes/src/lib.rs +++ b/hashes/src/lib.rs @@ -97,6 +97,7 @@ pub mod _export { mod internal_macros; #[macro_use] mod util; + #[macro_use] pub mod serde_macros; pub mod cmp;