use-uuid 0.0.1

Thin UUID parsing and formatting primitives for RustUse
Documentation
  • Coverage
  • 16.67%
    2 out of 12 items documented1 out of 9 items with examples
  • Size
  • Source code size: 10.54 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 412.88 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 25s Average build duration of successful builds.
  • all releases: 25s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-id
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-uuid

Thin UUID parsing and formatting helpers for RustUse.

Install

[dependencies]
use-uuid = "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 use_uuid::UuidId;

let value = UuidId::parse("123e4567-e89b-12d3-a456-426614174000")?;

assert_eq!(value.to_hyphenated(), "123e4567-e89b-12d3-a456-426614174000");
# Ok::<(), use_uuid::UuidIdError>(())

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.