diff --git a/Cargo.toml b/Cargo.toml index 7c477ef9..56729e68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ version = "0.2.0" spin = "0.4.6" volatile = "0.2.3" uart_16550 = "0.1.0" -x86_64 = "0.2.4" +x86_64 = "0.2.6" [dependencies.lazy_static] version = "1.0" 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 c0eee6fa..819dd7ff 100644 --- a/blog/content/second-edition/posts/05-integration-tests/index.md +++ b/blog/content/second-edition/posts/05-integration-tests/index.md @@ -199,7 +199,7 @@ To write to the I/O port, we use the [`x86_64`] crate: # in Cargo.toml [dependencies] -x86_64 = "0.2.4" +x86_64 = "0.2.6" ``` ```rust