https://github.com/murphsicles/uuid
UUID generation for Zeta — v4, v7, timestamp-based, serde support
https://github.com/murphsicles/uuid
Last synced: 22 days ago
JSON representation
UUID generation for Zeta — v4, v7, timestamp-based, serde support
- Host: GitHub
- URL: https://github.com/murphsicles/uuid
- Owner: murphsicles
- License: mit
- Created: 2026-05-15T21:09:02.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-05-15T23:13:08.000Z (3 months ago)
- Last Synced: 2026-05-15T23:56:50.157Z (3 months ago)
- Size: 33.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @std/uuid — UUID Generation for Zeta
Auto-converted from [uuid](https://crates.io/crates/uuid) v1.23.1 via [Dark Factory](https://github.com/murphsicles/dark-factory).
## Features
- **v4** — random UUIDs (via `@crypto/rand`)
- **v7** — Unix timestamp-based UUIDs (time-ordered, DB-friendly)
- **v1/v6/v8** — additional UUID versions for compatibility
- **serde** — serialize/deserialize with `@data/serde`
- **fmt** — hyphenated, urn, simple formatting
- **parse** — strict and lenient UUID string parsing
## Usage
```zeta
use @std/uuid::Uuid;
let id = Uuid::new_v4();
println!("{}", id.hyphenated());
```
## Stats: ~3,922 lines across 23 source files, 0 unsupported items
## License
MIT