{"id":31655533,"url":"https://github.com/rrchelbi/uuiz","last_synced_at":"2025-10-15T10:36:00.175Z","repository":{"id":310975012,"uuid":"1041675442","full_name":"rrchelbi/uuiz","owner":"rrchelbi","description":"Because every identity deserves a unique one. 🆔","archived":false,"fork":false,"pushed_at":"2025-09-01T19:49:50.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-07T13:28:42.524Z","etag":null,"topics":["blazingly-fast","library","module","uuid","zig"],"latest_commit_sha":null,"homepage":"","language":"Zig","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rrchelbi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-20T21:02:36.000Z","updated_at":"2025-09-01T19:49:52.000Z","dependencies_parsed_at":"2025-08-28T23:20:33.040Z","dependency_job_id":null,"html_url":"https://github.com/rrchelbi/uuiz","commit_stats":null,"previous_names":["rrchelbi/uuiz"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rrchelbi/uuiz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrchelbi%2Fuuiz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrchelbi%2Fuuiz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrchelbi%2Fuuiz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrchelbi%2Fuuiz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rrchelbi","download_url":"https://codeload.github.com/rrchelbi/uuiz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrchelbi%2Fuuiz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279073632,"owners_count":26097443,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-15T02:00:07.814Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blazingly-fast","library","module","uuid","zig"],"created_at":"2025-10-07T13:15:16.688Z","updated_at":"2025-10-15T10:36:00.145Z","avatar_url":"https://github.com/rrchelbi.png","language":"Zig","funding_links":[],"categories":[],"sub_categories":[],"readme":"# uuiz 🆔\n**uuiz** - Because every identity deserves a unique one. 🆔\n\n[![Zig](https://img.shields.io/badge/Zig-0.14.0-%23f7a41d.svg)](https://ziglang.org/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n[![Build Status](https://github.com/rrchelbi/uuiz/actions/workflows/ci.yml/badge.svg)](https://github.com/rrchelbi/uuiz/actions)\n\nA lightweight, zero-dependency UUID library for Zig. Provides RFC 4122 compliant UUID generation, parsing, and manipulation with a focus on performance and type safety.\n\n## Features\n\n- ✅ **RFC 4122 Compliant** - Full support for UUID specification\n- 🚀 **Zero Dependencies** - Only requires the Zig standard library\n- 🔒 **Type Safe** - Strong typing throughout the API\n\n## Installation\n\n1. Run zig fetch:\n```bash\n$ zig fetch --save git+https://www.github.com/rrchelbi/uuiz#main\n```\n\nAfter this your `build.zig.zon` should look like this:\n```zig\n.{\n    // other attributes\n    // ...\n\n    .dependencies = .{\n        // other dependencies\n        // ...\n\n        .uuiz = .{\n            .url = \"https://github.com/rrchelbi/uuiz?ref=main#...\",\n            .hash = \"1220...\",\n        },\n    },\n}\n```\n\n2. Add the module to your `build.zig`:\n```zig\nconst uuiz = b.dependency(\"uuiz\", .{\n    .target = target,\n    .optimize = optimize,\n});\n\nexe.addModule(\"uuiz\", uuiz.module(\"uuiz\"));\n```\n\n## Quick Start\n\n```zig\nconst std = @import(\"std\");\nconst uuiz = @import(\"uuiz\");\n\npub fn main() !void {\n    const uuid = uuiz.v4.new();\n    std.debug.print(\"Generated v4 UUID: {}\\n\", .{uuid});\n}\n```\n\n## API Reference\n\n### Core Types\n\n```zig\n// Main UUID type (128 bits)\nconst UUID = u128;\n\n// UUID versions\nconst Version = enum {\n    v1, // Time-based\n    v2, // DCE Security\n    v3, // MD5 hash\n    v4, // Random\n    v5, // SHA-1 hash\n    v6, // Ordered time-based\n    v7, // Unix timestamp-based\n    v8, // Custom\n};\n```\n\n## Version Support\n\n| Version | Status | Description |\n|---------|--------|-------------|\n| v1 | ✅ | Time-based  |\n| v2 |    | DCE Security |\n| v3 |    | MD5 namespace-based |\n| v4 | ✅ | Random (cryptographically secure) |\n| v5 |    | SHA-1 namespace-based |\n| v6 |    | Ordered time-based |\n| v7 |    | Unix timestamp-based |\n| v8 |    | Custom format |\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- RFC 4122 UUID specification\n- Zig community for best practices\n- Contributors and testers\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frrchelbi%2Fuuiz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frrchelbi%2Fuuiz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frrchelbi%2Fuuiz/lists"}