nu_plugin_nw_ulid 0.2.0

Production-grade ULID (Universally Unique Lexicographically Sortable Identifier) utilities plugin for Nushell with cryptographically secure operations, enterprise-grade security, and streaming support
Documentation
1
2
3
4
5
6
7
8
//! Binary entry point for the nu_plugin_nw_ulid plugin.

use nu_plugin::{MsgPackSerializer, serve_plugin};
use nu_plugin_nw_ulid::UlidPlugin;

fn main() {
    serve_plugin(&UlidPlugin, MsgPackSerializer {})
}