-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: re-enable clippy::module_inception
This patch re-enables `clippy::module_inception`, and addresses the related issues. This required renaming two modules to use an underscore, which is probably not the best solution, but makes minimal changes.
- Loading branch information
Showing
6 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
mod http; | ||
mod _http; | ||
pub mod lazy_remote_file; | ||
pub mod ureq_glue; | ||
pub mod user_agent; | ||
|
||
pub use self::http::{CacheMode, Http, HttpInner, NotCached}; | ||
pub use self::_http::{CacheMode, Http, HttpInner, NotCached}; | ||
pub use self::lazy_remote_file::LazyRemoteFile; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
mod _package_db; | ||
mod build_wheel; | ||
mod http; | ||
mod package_db; | ||
mod simple_api; | ||
|
||
pub use _package_db::PackageDB; | ||
pub use build_wheel::WheelBuilder; | ||
pub use package_db::PackageDB; | ||
pub use simple_api::ArtifactInfo; |