From cb6d46a5821e14ffe9b814afd22b031441c33a85 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sat, 9 Mar 2019 14:29:35 +0100 Subject: [PATCH] Require x86_64 0.5.0 and bootloader 0.4.0 --- .../second-edition/posts/10-paging-implementation/index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/blog/content/second-edition/posts/10-paging-implementation/index.md b/blog/content/second-edition/posts/10-paging-implementation/index.md index 547169f7..909595e0 100644 --- a/blog/content/second-edition/posts/10-paging-implementation/index.md +++ b/blog/content/second-edition/posts/10-paging-implementation/index.md @@ -33,11 +33,12 @@ The next section discusses the problem in detail and provides different approach ### Dependency Updates -This post requires version 0.4.0 or later of the `x86_64` dependency. You can update the dependency in your `Cargo.toml`: +This post requires version 0.5.0 or later of the `x86_64` dependency and version 0.4.0 or later of the `bootloader` dependency. You can update the dependencies in your `Cargo.toml`: ```toml [dependencies] -x86_64 = "0.4.0" # or later +x86_64 = "0.5.0" +bootloader = "0.4.0" ``` ## Accessing Page Tables