commit | 423399dffb21cebfb8ea07e63b387110b000235f | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Tue Dec 03 00:23:30 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Dec 03 00:23:30 2024 +0000 |
tree | c453bc1fbe68f225ce668c15c092c46b2b0abc06 | |
parent | 7e9db229a92f2650c76f057bb042f430f1111dfd [diff] | |
parent | 15cac37b2570e888f603a6d78ec2d0ca9658c095 [diff] |
Remove change to Cargo.toml. am: 15cac37b25 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/uefi/+/3387766 Change-Id: I65127a70139d489667c9f95466e717d9db5654f7 Signed-off-by: Automerger Merge Worker <[email protected]>
uefi
Rusty wrapper for the Unified Extensible Firmware Interface.
This crate makes it easy to develop Rust software that leverages safe, convenient, and performant abstractions for UEFI functionality.
uefi
supports writing code for both pre- and post-exit boot services epochs, but its true strength shines when you create UEFI images that heavily interact with UEFI boot services. Still, you have the flexibility to just integrate selected types and abstractions into your project, for example to parse the UEFI memory map.
Note that for producing UEFI images, you also need to use a corresponding uefi
compiler target of Rust, such as x86_64-unknown-uefi
.
Please refer to docs.rs for comprehensive documentation of the latest stable release. The latest not necessarily yet published documentation can be found in src/lib.rs
, which can also be locally viewed by running $ cargo xtask doc --open
.
For an introduction to the uefi-rs
project and this repository, please refer to our main README.