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::*;