Update the multiboot2 dependency

This relates to the upstream bug: https://github.com/rust-osdev/multiboot2/issues/215.
This commit is contained in:
Zhang Junyang
2024-06-20 08:48:20 +00:00
committed by Tate, Hongliang Tian
parent a089fbd4fc
commit 68793d28c5
2 changed files with 5 additions and 16 deletions

19
Cargo.lock generated
View File

@ -1015,15 +1015,15 @@ dependencies = [
[[package]]
name = "multiboot2"
version = "0.16.0"
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b624a7b3f704734d98d21455b617607eb7043d4509d1c34bf9e7ff7dd47b31a"
checksum = "ad7ef048d4783355163fd0c874aac3db54b919dc6a86dc29bb13f67308b114b0"
dependencies = [
"bitflags 2.4.1",
"derive_more",
"log",
"ptr_meta",
"uefi-raw 0.3.0",
"uefi-raw",
]
[[package]]
@ -1526,7 +1526,7 @@ dependencies = [
"ptr_meta",
"ucs2",
"uefi-macros",
"uefi-raw 0.5.0",
"uefi-raw",
"uguid",
]
@ -1541,17 +1541,6 @@ dependencies = [
"syn 2.0.49",
]
[[package]]
name = "uefi-raw"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62642516099c6441a5f41b0da8486d5fc3515a0603b0fdaea67b31600e22082e"
dependencies = [
"bitflags 2.4.1",
"ptr_meta",
"uguid",
]
[[package]]
name = "uefi-raw"
version = "0.5.0"

View File

@ -41,7 +41,7 @@ x86_64 = "0.14.2"
x86 = "0.52.0"
acpi = "4.1.1"
aml = "0.16.3"
multiboot2 = "0.16.0"
multiboot2 = "0.20.2"
rsdp = "2.0.0"
iced-x86 = { version = "1.21.0", default-features = false, features = [ "no_std", "decoder", "gas" ], optional = true }