Merge pull request #701 from phil-opp/post-04-update

Update to x86_64 0.8.0
This commit is contained in:
Philipp Oppermann
2019-12-10 16:54:51 +01:00
committed by GitHub
2 changed files with 15 additions and 3 deletions

16
Cargo.lock generated
View File

@@ -30,7 +30,7 @@ dependencies = [
"spin",
"uart_16550",
"volatile",
"x86_64",
"x86_64 0.8.0",
]
[[package]]
@@ -100,7 +100,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "803ea8cb602dbb32c1a657a866d2dd79fe7dbeab0fb2ac667cb4dcc7de12a58b"
dependencies = [
"bitflags",
"x86_64",
"x86_64 0.7.7",
]
[[package]]
@@ -127,3 +127,15 @@ dependencies = [
"cast",
"ux",
]
[[package]]
name = "x86_64"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a16d71284451a78134cae89ad63d5a0b0cc4b3aa663399f6a9dad74155228c61"
dependencies = [
"array-init",
"bit_field",
"bitflags",
"cast",
]

View File

@@ -12,7 +12,7 @@ harness = false
bootloader = "0.8.0"
volatile = "0.2.6"
spin = "0.5.2"
x86_64 = "0.7.5"
x86_64 = "0.8.0"
uart_16550 = "0.2.0"
[dependencies.lazy_static]