From 19f585d5171c143314d933b8b6499dcd7ba8aaf7 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 11 Sep 2019 11:17:47 +0200 Subject: [PATCH] Remove x86_64 dependency update note in Paging Implementation post We already introduce version 0.7.0 of `x86_64` in the Testing post for some time, so it's reasonable to expect that most people use a compatible version now. Therefore, we no longer need to mention it explicitly. --- .../second-edition/posts/09-paging-implementation/index.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/blog/content/second-edition/posts/09-paging-implementation/index.md b/blog/content/second-edition/posts/09-paging-implementation/index.md index 15dc9e58..36200f55 100644 --- a/blog/content/second-edition/posts/09-paging-implementation/index.md +++ b/blog/content/second-edition/posts/09-paging-implementation/index.md @@ -47,18 +47,16 @@ To implement the approach, we will need support from the bootloader, so we'll co ### Dependency Updates -This post requires version 0.8.0 or later of the `bootloader` dependency and version 0.6.0 or later of the `x86_64` dependency. You can update the dependencies in your `Cargo.toml`: +This post requires version 0.8.0 or later of the `bootloader` dependency. You can update the dependency in your `Cargo.toml`: ```toml [dependencies] bootloader = "0.8.0" -x86_64 = "0.6.0" ``` -For an overview of the changes in these versions, check out the [`bootloader` changelog] and the [`x86_64` changelog]. +For an overview of the changes in recent versions, check out the [`bootloader` changelog]. [`bootloader` changelog]: https://github.com/rust-osdev/bootloader/blob/master/Changelog.md -[`x86_64` changelog]: https://github.com/rust-osdev/x86_64/blob/master/Changelog.md ## Accessing Page Tables