Update x86 crate to 0.7.1 (#189)

This commit is contained in:
Philipp Oppermann
2016-07-14 11:21:04 +02:00
committed by GitHub
parent 48e7faa521
commit d64e4ba2fc
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ git = "https://github.com/phil-opp/multiboot2-elf64"
[dependencies.x86]
default-features = false
version = "0.7.0"
version = "0.7.1"
[lib]
crate-type = ["staticlib"]

View File

@@ -904,7 +904,7 @@ So to fix our `unmap` function, we need to remove the cached translation from th
```toml
[dependencies.x86]
version = "0.6.0"
version = "0.7.1"
default-features = false
```
It has a `performance-counter` feature that allows reading the CPU specific [performance counters] but increases compile times. We don't need it right now, so we disable it using `default-features = false`.