From 5ce7d1df8aabbbb46d7776b2bca1e0cd3de51628 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Tue, 3 Oct 2023 12:25:25 +0200 Subject: [PATCH] Remove unnecessary extern crate item This was only necessary in the 2015 edition --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 612f767099..369c79031d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -54,9 +54,6 @@ #![no_std] #![no_main] -#[cfg(any(target_arch = "x86", target_arch = "x86_64"))] -pub extern crate x86; - #[macro_use] extern crate alloc;