From 1f58eaf222f28ce4fa40189803192924ce11e747 Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Mon, 11 Jan 2021 14:35:32 +0100 Subject: [PATCH 1/2] Add missing imports, fixing 0.2.2. --- src/arch/x86_64.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/arch/x86_64.rs b/src/arch/x86_64.rs index 1323dbd..3f96e2a 100644 --- a/src/arch/x86_64.rs +++ b/src/arch/x86_64.rs @@ -1,3 +1,6 @@ +use core::{mem, slice}; +use core::ops::{Deref, DerefMut}; + use super::error::{Error, Result}; macro_rules! syscall { From 87158cd932643d686034bd7c28ab710edbb1f43f Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Mon, 11 Jan 2021 14:39:08 +0100 Subject: [PATCH 2/2] Bump cargo version to 0.2.3. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 98c0ff8..74c964e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redox_syscall" -version = "0.2.2" +version = "0.2.3" description = "A Rust library to access raw Redox system calls" license = "MIT" authors = ["Jeremy Soller "]