From 2cbe44ecefccef73a54903c8fea05bb381bb139c Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 27 Jan 2019 14:11:16 +0100 Subject: [PATCH] Update to x86_64 0.4.0 --- Cargo.toml | 2 +- blog/content/second-edition/posts/05-integration-tests/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 57683b58..a3820dcf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ bootloader = "0.3.12" spin = "0.4.9" volatile = "0.2.3" uart_16550 = "0.1.0" -x86_64 = "0.3.5" +x86_64 = "0.4.0" pic8259_simple = "0.1.1" pc-keyboard = "0.3.1" diff --git a/blog/content/second-edition/posts/05-integration-tests/index.md b/blog/content/second-edition/posts/05-integration-tests/index.md index ea0d07ed..6f3596dc 100644 --- a/blog/content/second-edition/posts/05-integration-tests/index.md +++ b/blog/content/second-edition/posts/05-integration-tests/index.md @@ -198,7 +198,7 @@ To write to the I/O port, we use the [`x86_64`] crate: # in Cargo.toml [dependencies] -x86_64 = "0.3.5" +x86_64 = "0.4.0" ``` ```rust