• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

examples/25-Apr-2025-8367

src/25-Apr-2025-790448

tests/25-Apr-2025-305205

Android.bpD25-Apr-202568 21

CHANGELOG.mdD25-Apr-20253.1 KiB10271

Cargo.tomlD25-Apr-20251.3 KiB6254

Cargo.toml.origD25-Apr-20251.1 KiB3831

LICENSED25-Apr-202511.1 KiB203169

LICENSE-APACHED25-Apr-202511.1 KiB203169

LICENSE-MITD25-Apr-20251 KiB2622

METADATAD25-Apr-2025474 2221

MODULE_LICENSE_APACHE2D25-Apr-20250

OWNERSD25-Apr-202545 21

README.mdD25-Apr-20251 KiB3320

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