fix: remove clippy unexpected_cfgs warning (#1588)

Since `std` doesn't exist as a cfg, `not(std)` was always true, so this does not change any behavior.
This commit is contained in:
Daniel-Aaron-Bloom 2024-05-21 13:14:19 -07:00 committed by GitHub
parent dc77c77f2b
commit 430290fb76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
#![cfg_attr(not(std), no_std)]
#![no_std]
#[cfg(not(feature = "parallel"))]
extern crate alloc;