use-uuid
Thin UUID parsing and formatting helpers for RustUse.
Install
[]
= "0.0.1"
Foundation
use-uuid wraps the established uuid crate with a minimal UuidId type plus parsing, formatting, and validation helpers that match the rest of this workspace.
Example
use UuidId;
let value = parse?;
assert_eq!;
# Ok::
When to use directly
Choose use-uuid when UUID parsing or formatting is the only identifier concern you need.
Scope
- UUID generation policy is intentionally left to the upstream crate.
- This crate stays focused on parsing, formatting, and validation.
- Broader UUID registries and persistence policies are out of scope.
Status
use-uuid is a pre-1.0 crate with a deliberately thin wrapper API.