Skip to content

Commit

Permalink
Fixed no-std builds (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
erin-desu authored Jun 5, 2024
1 parent c2d634a commit c396757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//!
//! This is a no_std crate, but still requires the alloc crate.

#![cfg_attr(all(not(test), not(feature = "std"), not(feature = "hashbrown")), no_std)]
#![cfg_attr(all(not(test), not(feature = "std"), feature = "hashbrown"), no_std)]
#![allow(dead_code)]
#![allow(clippy::style)]
#![allow(clippy::complexity)]
Expand Down

0 comments on commit c396757

Please sign in to comment.