From fdcc8539cdb9f73eb70f9896f3c2ed74f130c8e5 Mon Sep 17 00:00:00 2001 From: Jinank Jain Date: Thu, 21 Mar 2024 09:40:53 +0530 Subject: [PATCH] hypervisor: Don't restrict logger crate to just x86 Even aarch64 subsystem of hypervisor crate can use logging so don't restrict it just to x86. Signed-off-by: Jinank Jain --- hypervisor/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypervisor/src/lib.rs b/hypervisor/src/lib.rs index 0c0e940e4..88f3c7e6f 100644 --- a/hypervisor/src/lib.rs +++ b/hypervisor/src/lib.rs @@ -20,7 +20,7 @@ #[macro_use] extern crate anyhow; -#[cfg(target_arch = "x86_64")] +#[allow(unused_imports)] #[macro_use] extern crate log;