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
use nu_plugin::{serve_plugin, MsgPackSerializer};
use nu_plugin_hashes::HashesPlugin;

fn main() {
  serve_plugin(&HashesPlugin, MsgPackSerializer);
}