ulid 0.1.1

a Universally Unique Lexicographically Sortable Identifier implementation
Documentation

ulid-rs

This is a Rust implementation of the ulid project which provides Universally Unique Lexicographically Sortable Identifiers.

Quickstart

// Generate a ulid
let ulid = Ulid::new();

// Create from a String
let ulid = Ulid::from_string("...");

// Generate a string for a ulid
let s = ulid::to_string()