mirror of
https://github.com/nushell/nushell
synced 2025-01-09 19:59:02 +00:00
173d60d59d
* feat: deprecate `hash base64` command * feat: extend `decode` and `encode` command families This commit - Adds `encode` command family - Backports `hash base64` features to `encode base64` and `decode base64` subcommands. - Refactors code a bit and extends tests for encodings - `decode base64` returns a binary `Value` (that may be decoded into a string using `decode` command) * feat: add `--binary(-b)` flag to `decode base64` Default output type is now string, but binary can be requested using this new flag.
19 lines
324 B
Rust
19 lines
324 B
Rust
mod build_string;
|
|
mod char_;
|
|
mod detect_columns;
|
|
mod encode_decode;
|
|
mod format;
|
|
mod parse;
|
|
mod size;
|
|
mod split;
|
|
mod str_;
|
|
|
|
pub use build_string::BuildString;
|
|
pub use char_::Char;
|
|
pub use detect_columns::*;
|
|
pub use encode_decode::*;
|
|
pub use format::*;
|
|
pub use parse::*;
|
|
pub use size::Size;
|
|
pub use split::*;
|
|
pub use str_::*;
|