| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| examples/ | 04-Jul-2025 | - | 83 | 67 | ||
| src/ | 04-Jul-2025 | - | 790 | 448 | ||
| tests/ | 04-Jul-2025 | - | 305 | 205 | ||
| .android-checksum.json | D | 04-Jul-2025 | 2.1 KiB | 1 | 1 | |
| .cargo-checksum.json | D | 04-Jul-2025 | 1.8 KiB | 1 | 1 | |
| Android.bp | D | 04-Jul-2025 | 1.1 KiB | 45 | 41 | |
| CHANGELOG.md | D | 04-Jul-2025 | 3.1 KiB | 102 | 71 | |
| Cargo.lock | D | 04-Jul-2025 | 4.9 KiB | 197 | 174 | |
| Cargo.toml | D | 04-Jul-2025 | 1.3 KiB | 62 | 54 | |
| LICENSE | D | 04-Jul-2025 | 11.1 KiB | 203 | 169 | |
| LICENSE-APACHE | D | 04-Jul-2025 | 11.1 KiB | 203 | 169 | |
| METADATA | D | 04-Jul-2025 | 376 | 18 | 17 | |
| MODULE_LICENSE_APACHE2 | D | 04-Jul-2025 | 0 | |||
| README.md | D | 04-Jul-2025 | 1 KiB | 33 | 20 | |
| cargo_embargo.json | D | 04-Jul-2025 | 360 | 20 | 20 |
README.md
1# `uguid` 2 3[](https://crates.io/crates/uguid) 4[](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