diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index d3f878f..6c688eb 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -69,6 +69,9 @@ name = "portable-atomic" version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" +dependencies = [ + "critical-section", +] [[package]] name = "redox_syscall" diff --git a/Cargo.toml b/Cargo.toml index e41e06e..a674409 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ parking_lot = ["dep:parking_lot_core"] # Uses `critical-section` to implement `sync` and `race` modules. in # `#![no_std]` mode. Please read `critical-section` docs carefully # before enabling this feature. -critical-section = ["dep:critical-section", "portable-atomic" ] +critical-section = ["dep:critical-section", "portable-atomic/critical-section"] # Enables semver-exempt APIs of this crate. # At the moment, this feature is unused.