Skip to content

Commit

Permalink
Fix features.
Browse files Browse the repository at this point in the history
  • Loading branch information
reitermarkus committed Sep 17, 2022
1 parent 9e87912 commit 124c01d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -336,11 +336,11 @@ extern crate alloc;
#[path = "imp_cs.rs"]
mod imp;

#[cfg(all(feature = "std", feature = "parking_lot", not(feature = "critical-section")))]
#[cfg(all(feature = "std", feature = "parking_lot"))]
#[path = "imp_pl.rs"]
mod imp;

#[cfg(all(feature = "std", not(feature = "parking_lot"), not(feature = "critical-section")))]
#[cfg(all(feature = "std", not(feature = "parking_lot")))]
#[path = "imp_std.rs"]
mod imp;

Expand Down

0 comments on commit 124c01d

Please sign in to comment.