diff --git a/rat-efi/Cargo.lock b/rat-efi/Cargo.lock index 4f53200..d3bc969 100644 --- a/rat-efi/Cargo.lock +++ b/rat-efi/Cargo.lock @@ -143,7 +143,7 @@ dependencies = [ "log", "rat-common", "uefi", - "uefi-raw", + "uefi-raw 0.14.0", "windows-sys", ] @@ -210,9 +210,9 @@ dependencies = [ [[package]] name = "uefi" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66ab9569afdd1e33a31d8002343aa1df594f055347b1a66136bf9dd6cbc3ec37" +checksum = "d8f2e1b4a439d82899da4dc0ee8ac742db07a9ff493bc4f31d345c24e12e17e9" dependencies = [ "bitflags 2.11.1", "cfg-if", @@ -220,7 +220,7 @@ dependencies = [ "ptr_meta", "ucs2", "uefi-macros", - "uefi-raw", + "uefi-raw 0.15.0", "uguid", ] @@ -245,6 +245,16 @@ dependencies = [ "uguid", ] +[[package]] +name = "uefi-raw" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8868c2fb03f31e55ccf9b47f72e17097bb88c45306cb82f5a2258935520c72d6" +dependencies = [ + "bitflags 2.11.1", + "uguid", +] + [[package]] name = "uguid" version = "2.2.1" diff --git a/rat-efi/Cargo.toml b/rat-efi/Cargo.toml index 701091f..c7bc59a 100644 --- a/rat-efi/Cargo.toml +++ b/rat-efi/Cargo.toml @@ -9,7 +9,7 @@ edition = "2024" com_logger = { version = "0.1.2", default-features = false } log = { version = "0.4.32", default-features = false } rat-common = { path = "../rat-common", default-features = false } -uefi = { version = "0.37.0", default-features = false, features = ["alloc", "global_allocator", "panic_handler"] } +uefi = { version = "0.38.0", default-features = false, features = ["alloc", "global_allocator", "panic_handler"] } uefi-raw = { version = "0.14.0", default-features = false } [dependencies.windows-sys]