Skip to content

Commit

Permalink
build(deps): bump uefi from 0.30.0 to 0.31.0
Browse files Browse the repository at this point in the history
Bumps [uefi](https://github.com/rust-osdev/uefi-rs) from 0.30.0 to 0.31.0.
- [Release notes](https://github.com/rust-osdev/uefi-rs/releases)
- [Changelog](https://github.com/rust-osdev/uefi-rs/blob/main/CHANGELOG.md)
- [Commits](rust-osdev/uefi-rs@uefi-v0.30.0...uefi-v0.31.0)

---
updated-dependencies:
- dependency-name: uefi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Co-authored-by: Martin Kröning <martin.kroening@eonerc.rwth-aachen.de>
  • Loading branch information
dependabot[bot] and mkroening committed Aug 26, 2024
1 parent 36fb68b commit 8db3b94
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ hermit-dtb = { version = "0.1" }
goblin = { version = "0.8", default-features = false, features = ["elf64"] }

[target.'cfg(target_os = "uefi")'.dependencies]
uefi = { version = "0.30", features = ["alloc", "panic_handler", "qemu"] }
uefi = { version = "0.31", features = ["alloc", "panic_handler", "qemu"] }
qemu-exit = "3"

[target.'cfg(target_arch = "riscv64")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/os/uefi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub use self::console::CONSOLE;
// Entry Point of the Uefi Loader
#[entry]
fn loader_main(_handle: Handle, mut system_table: SystemTable<Boot>) -> Status {
uefi::helpers::init(&mut system_table).unwrap();
uefi::helpers::init().unwrap();
unsafe {
uefi::allocator::init(&mut system_table);
}
Expand Down

0 comments on commit 8db3b94

Please sign in to comment.