mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 02:13:47 +01: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
@ -1,4 +1,4 @@
|
|||||||
pub mod command;
|
mod command;
|
||||||
mod filesize;
|
mod filesize;
|
||||||
|
|
||||||
pub use self::filesize::FileSize;
|
pub use self::filesize::FileSize;
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user