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