Fix internal module reexports (#9378)

# Description
`cargo +stable check` was complaining about ambiguous wildcard
reexports. Fixed by making the reexport of modules not pub as only the
explicitly named symbols are actually needed in the current state.


# User-Facing Changes
None
This commit is contained in:
Stefan Holderbach 2023-06-07 16:36:34 +02:00 committed by GitHub
parent 6fa05c12ff
commit 20b697f722
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
pub mod command; mod command;
mod filesize; mod filesize;
pub use self::filesize::FileSize; pub use self::filesize::FileSize;

View File

@ -1,9 +1,9 @@
pub mod chars; mod chars;
pub mod column; mod column;
pub mod command; mod command;
pub mod list; mod list;
pub mod row; mod row;
pub mod words; mod words;
pub use chars::SubCommand as SplitChars; pub use chars::SubCommand as SplitChars;
pub use column::SubCommand as SplitColumn; pub use column::SubCommand as SplitColumn;