diff --git a/Cargo.lock b/Cargo.lock index ff2bf40610..5351cc593c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -580,7 +580,7 @@ dependencies = [ "trapframe", "uart_16550", "x86", - "x86_64", + "x86_64 0.15.0", "zerocopy", ] @@ -1303,7 +1303,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f287ee70169f5bfddba441baf901b620e3655f16fa7815f48a7e100ec6d86a8f" dependencies = [ "raw-cpuid", - "x86_64", + "x86_64 0.14.12", ] [[package]] @@ -1598,6 +1598,18 @@ dependencies = [ "volatile", ] +[[package]] +name = "x86_64" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd9b58dbbd61248db1d7d5b7068fbe91b042e889361fe79fb4fd16a12daa66d3" +dependencies = [ + "bit_field", + "bitflags 2.4.2", + "rustversion", + "volatile", +] + [[package]] name = "xshell" version = "0.2.5" diff --git a/Cargo.toml b/Cargo.toml index 73da3c1622..64131426ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -122,7 +122,7 @@ features = [ multiboot = "0.8" uart_16550 = "0.3" x86 = { version = "0.52", default-features = false } -x86_64 = "0.14" +x86_64 = "0.15" qemu-exit = "3.0" [target.'cfg(target_arch = "aarch64")'.dependencies]