individual-identifiers 0.1.2

A library for creating unique, human-readable alliterative identifiers.
Documentation
1
2
3
4
5
6
7
//! A Rust library for generating unique, alliterative identifiers.
//! Each identifier consists of a UUID, and an alliterative, human-readable name made up of an adjective and a noun.
//! This library is perfect for creating memorable, user-friendly identifiers that also include a UUID for uniqueness and easy database indexing.

mod identifier;

pub use identifier::Identifier;