From 0545b348917a4f2ff5fa5ceeb70f4de0723a0ed9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Tue, 8 Aug 2023 10:43:21 +0200 Subject: [PATCH] build(deps): Explicitly enable x86_64/instructions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 559286fb..90c6dd0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ multiboot = "0.8" [target.'cfg(target_arch = "x86_64")'.dependencies] uart_16550 = "0.2" -x86_64 = { version = "0.14", default-features = false } +x86_64 = { version = "0.14", default-features = false, features = ["instructions"] } [target.'cfg(target_arch = "aarch64")'.dependencies] align-data = "0.1"