diff --git a/bisync/src/lib.rs b/bisync/src/lib.rs index 960b277..11c2387 100644 --- a/bisync/src/lib.rs +++ b/bisync/src/lib.rs @@ -17,6 +17,7 @@ //! #[path = "."] //! pub mod blocking { //! use bisync::synchronous::*; +//! #[allow(clippy::duplicate_mod)] //! mod inner; //! pub use inner::*; //! } diff --git a/bisync_example/src/main.rs b/bisync_example/src/main.rs index 73ba38f..51d9d9f 100644 --- a/bisync_example/src/main.rs +++ b/bisync_example/src/main.rs @@ -8,6 +8,7 @@ pub mod blocking { #[path = "."] pub mod asynchronous { use bisync::asynchronous::*; + #[allow(clippy::duplicate_mod)] mod inner; pub use inner::*; }