• Home
Name Date Size #Lines LOC

..--

examples/04-Jul-2025-8367

src/04-Jul-2025-790448

tests/04-Jul-2025-305205

.android-checksum.jsonD04-Jul-20252.1 KiB11

.cargo-checksum.jsonD04-Jul-20251.8 KiB11

Android.bpD04-Jul-20251.1 KiB4541

CHANGELOG.mdD04-Jul-20253.1 KiB10271

Cargo.lockD04-Jul-20254.9 KiB197174

Cargo.tomlD04-Jul-20251.3 KiB6254

LICENSED04-Jul-202511.1 KiB203169

LICENSE-APACHED04-Jul-202511.1 KiB203169

METADATAD04-Jul-2025376 1817

MODULE_LICENSE_APACHE2D04-Jul-20250

README.mdD04-Jul-20251 KiB3320

cargo_embargo.jsonD04-Jul-2025360 2020

README.md

1# `uguid`
2
3[![Crates.io](https://img.shields.io/crates/v/uguid)](https://crates.io/crates/uguid)
4[![Docs.rs](https://docs.rs/uguid/badge.svg)](https://docs.rs/uguid)
5
6`no_std` library providing a GUID (Globally Unique Identifier) type, as
7used in GPT disks, UEFI, and Microsoft Windows.
8
9[GPT]: https://en.wikipedia.org/wiki/GUID_Partition_Table
10
11## Features
12
13No features are enabled by default.
14
15* `bytemuck`: Implements bytemuck's `Pod` and `Zeroable` traits for `Guid`.
16* `serde`: Implements serde's `Serialize` and `Deserialize` traits for `Guid`.
17* `std`: Provides `std::error::Error` implementation for the error type.
18
19## Minimum Supported Rust Version (MSRV)
20
21The current MSRV is 1.68.
22
23## License
24
25Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE)
26or [MIT license](LICENSE-MIT) at your option.
27
28## Disclaimer
29
30This project is not an official Google project. It is not supported by
31Google and Google specifically disclaims all warranties as to its quality,
32merchantability, or fitness for a particular purpose.
33