nu_plugin_hashes 0.1.9

A Nushell plugin that adds 63 cryptographic hash functions from Hashes project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod commands_generated;
mod hasher;
mod hashers_generated;

use nu_plugin::Plugin;

pub struct HashesPlugin;

impl Plugin for HashesPlugin {
  fn version(&self) -> String {
    env!("CARGO_PKG_VERSION").into()
  }

  fn commands(&self) -> Vec<Box<dyn nu_plugin::PluginCommand<Plugin = Self>>> {
    commands_generated::commands()
  }
}