Only set no_std when built without the std feature

This commit is contained in:
Christopher Berner 2023-11-26 06:52:37 -08:00
parent 4670feb3d6
commit cd1df04d92

@ -1,5 +1,5 @@
#![allow(clippy::needless_return, clippy::unreadable_literal)]
#![no_std]
#![cfg_attr(not(feature = "std"), no_std)]
#[cfg(not(feature = "std"))]
#[macro_use]