mirror of
https://github.com/nushell/nushell.git
synced 2025-07-14 21:35:58 +02:00
* WIP try testing hash command Ensure test worked fmt WIP get it working for other types of base64 Use optional named arg WIP * rebased and refactored a little with encoding and decoding Fix some typos Add some more charactersets refactor several args into the encoding config struct and fix character_set arg. It needs to match the field Add main hash command so it can be found via help Added tests for running the whole pipeline * add test case to cover invalid character sets * clippy and fmt
6 lines
104 B
Rust
6 lines
104 B
Rust
mod base64_;
|
|
mod command;
|
|
|
|
pub use base64_::SubCommand as HashBase64;
|
|
pub use command::Command as Hash;
|