From 8bacfa0d60b44cf4dc743586e446386aa5f45d8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 21:25:36 +0000 Subject: [PATCH] build(deps): bump x86_64 from 0.14.12 to 0.15.0 Bumps [x86_64](https://github.com/rust-osdev/x86_64) from 0.14.12 to 0.15.0. - [Changelog](https://github.com/rust-osdev/x86_64/blob/master/Changelog.md) - [Commits](https://github.com/rust-osdev/x86_64/compare/v0.14.12...v0.15.0) --- updated-dependencies: - dependency-name: x86_64 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) 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]