1[package]
2name = "uefi-raw"
3version = "0.9.0"
4readme = "README.md"
5description = """
6Raw UEFI types and bindings for protocols, boot, and runtime services. This can
7serve as base for an UEFI firmware implementation or a high-level wrapper to
8access UEFI functionality from an UEFI image.
9"""
10
11authors.workspace = true
12categories.workspace = true
13edition.workspace = true
14keywords.workspace = true
15license.workspace = true
16repository.workspace = true
17# uefi-raw is much less likely to need the latest bleeding-edge features.
18# Hence, it is okay to not use the workspace MSRV.
19rust-version = "1.70"
20
21[dependencies]
22bitflags.workspace = true
23ptr_meta.workspace = true
24uguid.workspace = true
25
26[package.metadata.docs.rs]
27rustdoc-args = ["--cfg", "docsrs"]
28