Update x86_64 to version 0.5.2

This is required for the upcomping _Paging Implementation_ post.
This commit is contained in:
Philipp Oppermann
2019-03-12 17:47:58 +01:00
parent 0b6564895e
commit ddbe36c0dc
6 changed files with 40 additions and 40 deletions

View File

@@ -193,13 +193,13 @@ The `iobase` specifies on which port address the device should live (`0xf4` is a
To write to the I/O port, we use the [`x86_64`] crate:
[`x86_64`]: https://docs.rs/x86_64/0.5.0/x86_64/
[`x86_64`]: https://docs.rs/x86_64/0.5.2/x86_64/
```toml
# in Cargo.toml
[dependencies]
x86_64 = "0.5.0"
x86_64 = "0.5.2"
```
```rust