1# Copyright 2022 Google LLC 2# 3# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or 4# https://www.apache.org/licenses/LICENSE-2.0> or the MIT license 5# <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your 6# option. This file may not be copied, modified, or distributed 7# except according to those terms. 8 9[package] 10name = "uguid" 11version = "2.2.0" 12categories = ["data-structures", "embedded", "no-std"] 13description = "GUID (Globally Unique Identifier) no_std library" 14keywords = ["gpt", "guid", "no_std", "uefi"] 15 16edition.workspace = true 17rust-version.workspace = true 18license.workspace = true 19repository.workspace = true 20 21[dependencies] 22bytemuck = { workspace = true, features = ["derive"], optional = true } 23serde = { version = "1.0.0", default-features = false, features = ["derive"], optional = true } 24 25[dev-dependencies] 26serde_test = "1.0.0" 27trybuild = "1.0.80" 28 29[features] 30# See module docstring in src/lib.rs for details of what these features do. 31bytemuck = ["dep:bytemuck"] 32serde = ["dep:serde"] 33std = [] 34 35[package.metadata.docs.rs] 36all-features = true 37rustdoc-args = ["--cfg", "docsrs"] 38