Procedural macros for convenient NULID generation.
This crate provides macros to simplify working with NULIDs in your code.
use nulid::nulid; // Generate a new NULID (panics on error) let id = nulid!(); // Generate with explicit error handling let id = nulid!(?);