diff --git a/crates/eip7702/src/lib.rs b/crates/eip7702/src/lib.rs index d171aeb..5fa75a1 100644 --- a/crates/eip7702/src/lib.rs +++ b/crates/eip7702/src/lib.rs @@ -1,8 +1,10 @@ //! [EIP-7702] constants, helpers, and types. //! //! [EIP-7702]: https://eips.ethereum.org/EIPS/eip-7702 +#![cfg_attr(not(feature = "std"), no_std)] -#[cfg(not(feature = "std"))] +#[allow(unused_imports)] +#[macro_use] extern crate alloc; mod auth_list;