From b760f44e3b35cbae06a5f22cabde0073cc5d981f Mon Sep 17 00:00:00 2001 From: Chris Denton Date: Sat, 2 Dec 2023 21:26:17 -0700 Subject: [PATCH] Fix unused_imports warning on latest nightly (rust-lang/backtrace-rs#575) This was causing CI to fail. --- crates/as-if-std/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/as-if-std/src/lib.rs b/crates/as-if-std/src/lib.rs index e1d8faaeb..89ed961f5 100644 --- a/crates/as-if-std/src/lib.rs +++ b/crates/as-if-std/src/lib.rs @@ -9,6 +9,7 @@ extern crate alloc; // We want to `pub use std::*` in the root but we don't want `std` available in // the root namespace, so do this in a funky inner module. +#[allow(unused_imports)] mod __internal { extern crate std; pub use std::*;