From 3c4bddf226ba22c170686a7f5c0a3b1931465d9e Mon Sep 17 00:00:00 2001 From: Miguel Ojeda Date: Fri, 12 Feb 2021 04:38:19 +0100 Subject: [PATCH] libkernel: remove leftover `extern crate` It was the last one. Signed-off-by: Miguel Ojeda --- rust/kernel/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs index 19e9662eabc9ec..972c7ad8a1a8c2 100644 --- a/rust/kernel/lib.rs +++ b/rust/kernel/lib.rs @@ -10,8 +10,6 @@ #[cfg(not(CONFIG_RUST))] compile_error!("Missing kernel configuration for conditional compilation"); -extern crate alloc; - use core::panic::PanicInfo; mod allocator;