nushell/crates/nu-command/src/generators/mod.rs
Antoine Stevan dbdb1f6600
remove the unfold command (#10773)
follow-up to:
- https://github.com/nushell/nushell/pull/10771

> **Important**
> wait for between 0.87 and 0.88 to land this

# Description
after deprecation comes the removal... this PR removes `unfold` in favor
of `generate` 🥳

# User-Facing Changes
users should use `generate` now, `unfold` will stop working.

# Tests + Formatting

# After Submitting
2023-11-17 06:50:20 +08:00

12 lines
179 B
Rust

mod cal;
mod generate;
mod seq;
mod seq_char;
mod seq_date;
pub use cal::Cal;
pub use generate::Generate;
pub use seq::Seq;
pub use seq_char::SeqChar;
pub use seq_date::SeqDate;