add keep deprecated commands (#5124)

This commit is contained in:
Darren Schroeder
2022-04-07 17:10:46 -05:00
committed by GitHub
parent 4f974efeba
commit bdfad6b1de
5 changed files with 117 additions and 0 deletions

View File

@ -1,3 +1,6 @@
mod keep_;
mod keep_until;
mod keep_while;
mod match_;
mod nth;
mod pivot;
@ -7,6 +10,9 @@ mod str_find_replace;
mod str_int;
mod unalias;
pub use keep_::KeepDeprecated;
pub use keep_until::KeepUntilDeprecated;
pub use keep_while::KeepWhileDeprecated;
pub use match_::MatchDeprecated;
pub use nth::NthDeprecated;
pub use pivot::PivotDeprecated;