fix(clippy): allow `clippy::module_inception` for sha.rs in sha module

This commit is contained in:
MedzikUser 2022-06-28 22:54:17 +02:00
parent e658bde37b
commit b04635a3ea
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@
//! ``` //! ```
mod mac; mod mac;
#[allow(clippy::module_inception)]
mod sha; mod sha;
pub use mac::*; pub use mac::*;