Production-grade ULID (Universally Unique Lexicographically Sortable Identifier) utilities plugin for Nushell with cryptographically secure operations, enterprise-grade security, and streaming support
//! Binary entry point for the nu_plugin_nw_ulid plugin.
usenu_plugin::{MsgPackSerializer, serve_plugin};usenu_plugin_nw_ulid::UlidPlugin;fnmain(){serve_plugin(&UlidPlugin, MsgPackSerializer {})}