mirror of
https://github.com/nushell/nushell.git
synced 2025-04-30 16:14:27 +02:00
# Description Remove commands which were deprecated in 0.101: * `split-by` (#14019) * `date to-record` and `date to-table` (#14319) # User-Facing Changes - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` # After Submitting TODO: `grep` (`ag`) doc repo for any usage of these commands
15 lines
376 B
Rust
15 lines
376 B
Rust
mod date_;
|
|
mod humanize;
|
|
mod list_timezone;
|
|
mod now;
|
|
mod parser;
|
|
mod to_timezone;
|
|
mod utils;
|
|
|
|
pub use date_::Date;
|
|
pub use humanize::SubCommand as DateHumanize;
|
|
pub use list_timezone::SubCommand as DateListTimezones;
|
|
pub use now::SubCommand as DateNow;
|
|
pub use to_timezone::SubCommand as DateToTimezone;
|
|
pub(crate) use utils::{generate_strftime_list, parse_date_from_string};
|