forked from extern/nushell
# Description as stated in the `0.79` release note, this PR removes the `old-alias` and `export old-alias` commands, which were deprecated before. # User-Facing Changes `old-alias` is gone for good 😌 # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` # After Submitting already mentionned in the `0.79` release note.
22 lines
553 B
Rust
22 lines
553 B
Rust
mod collect;
|
|
mod deprecated_commands;
|
|
mod hash_base64;
|
|
mod lpad;
|
|
mod math_eval;
|
|
mod rpad;
|
|
mod str_datetime;
|
|
mod str_decimal;
|
|
mod str_find_replace;
|
|
mod str_int;
|
|
|
|
pub use collect::StrCollectDeprecated;
|
|
pub use deprecated_commands::*;
|
|
pub use hash_base64::HashBase64;
|
|
pub use lpad::LPadDeprecated;
|
|
pub use math_eval::SubCommand as MathEvalDeprecated;
|
|
pub use rpad::RPadDeprecated;
|
|
pub use str_datetime::StrDatetimeDeprecated;
|
|
pub use str_decimal::StrDecimalDeprecated;
|
|
pub use str_find_replace::StrFindReplaceDeprecated;
|
|
pub use str_int::StrIntDeprecated;
|