diff --git a/Cargo.toml b/Cargo.toml index 47cbd1af..6c5ef366 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] diff --git a/blog/post/2015-12-09-modifying-page-tables.md b/blog/post/2015-12-09-modifying-page-tables.md index c1490d88..bd07e8e2 100644 --- a/blog/post/2015-12-09-modifying-page-tables.md +++ b/blog/post/2015-12-09-modifying-page-tables.md @@ -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`.