From 6c8fa15d0c0efeecf6ac5a87056c84709cd06c6b Mon Sep 17 00:00:00 2001 From: Mayant Mukul Date: Tue, 2 Feb 2021 21:23:26 +0530 Subject: [PATCH] chore: bump x86_64 to v0.13.2 Build fails on latest nightly. See https://github.com/rust-osdev/x86_64/pull/230 --- Cargo.lock | 14 ++++++++++++-- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f53c41..20e6b50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -27,7 +27,7 @@ dependencies = [ "spin", "uart_16550", "volatile", - "x86_64", + "x86_64 0.13.2", ] [[package]] @@ -52,7 +52,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3b8cdf877945aa66117c608d4e030c11c1e56402112257762d04d8b7938be97" dependencies = [ "bitflags", - "x86_64", + "x86_64 0.12.4", ] [[package]] @@ -70,3 +70,13 @@ dependencies = [ "bit_field", "bitflags", ] + +[[package]] +name = "x86_64" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b871116e3c83dad0795580b10b2b1dd05cb52ec719af36180371877b09681f7f" +dependencies = [ + "bit_field", + "bitflags", +] diff --git a/Cargo.toml b/Cargo.toml index 991e1a4..b118f1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ harness = false bootloader = "0.9.11" volatile = "0.2.6" spin = "0.5.2" -x86_64 = "0.12.1" +x86_64 = "0.13.2" uart_16550 = "0.2.0" [dependencies.lazy_static]