From 2039cd7a64e0d9eee2e4b588c0df539b58c5c23c Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 8 Mar 2020 14:27:36 +0100 Subject: [PATCH] Update x86_64 to version 0.9.5 --- Cargo.lock | 48 ++---------------------------------------------- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 47 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a5457572..a9e36504 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -21,7 +21,7 @@ dependencies = [ "spin", "uart_16550", "volatile", - "x86_64 0.8.3", + "x86_64", ] [[package]] @@ -30,15 +30,6 @@ version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3ed4f735c4e455ba86a3d2939b1c0729414153642106c9d035693355630a42c" -[[package]] -name = "cast" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b9434b9a5aa1450faa3f9cb14ea0e8c53bb5d2b3c1bfd1ab4fc03e9f33fbfb0" -dependencies = [ - "rustc_version", -] - [[package]] name = "lazy_static" version = "1.4.0" @@ -48,30 +39,6 @@ dependencies = [ "spin", ] -[[package]] -name = "rustc_version" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -dependencies = [ - "semver", -] - -[[package]] -name = "semver" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" -dependencies = [ - "semver-parser", -] - -[[package]] -name = "semver-parser" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" - [[package]] name = "spin" version = "0.5.2" @@ -85,7 +52,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d44b0f30cb82b0fbc15b78ade1064226529ad52028bc8cb8accb98ff6f3d7131" dependencies = [ "bitflags", - "x86_64 0.9.5", + "x86_64", ] [[package]] @@ -94,17 +61,6 @@ version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6af0edf5b4faacc31fc51159244d78d65ec580f021afcef7bd53c04aeabc7f29" -[[package]] -name = "x86_64" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d9e3e26fcb51976eafa310e8f2b7a5a83ae8c185443efe50cbc6534a4fffa0d" -dependencies = [ - "bit_field", - "bitflags", - "cast", -] - [[package]] name = "x86_64" version = "0.9.5" diff --git a/Cargo.toml b/Cargo.toml index 30dd4ba4..a4fda487 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ harness = false bootloader = "0.8.0" volatile = "0.2.6" spin = "0.5.2" -x86_64 = "0.8.1" +x86_64 = "0.9.5" uart_16550 = "0.2.0" [dependencies.lazy_static]