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