mirror of
https://github.com/nushell/nushell
synced 2025-01-13 21:55:07 +00:00
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:
parent
6fa05c12ff
commit
20b697f722
2 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
pub mod command;
|
||||
mod command;
|
||||
mod filesize;
|
||||
|
||||
pub use self::filesize::FileSize;
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
pub mod chars;
|
||||
pub mod column;
|
||||
pub mod command;
|
||||
pub mod list;
|
||||
pub mod row;
|
||||
pub mod words;
|
||||
mod chars;
|
||||
mod column;
|
||||
mod command;
|
||||
mod list;
|
||||
mod row;
|
||||
mod words;
|
||||
|
||||
pub use chars::SubCommand as SplitChars;
|
||||
pub use column::SubCommand as SplitColumn;
|
||||
|
|
Loading…
Reference in a new issue