You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any library with no #[no_std] causes the failure.
This is because rustdoc::clean::Crate contains externs: HashMap<ast::CrateNum, ExternalCrate> so output is like {1: (...), 2: (...)}.
The text was updated successfully, but these errors were encountered:
Move `mutex_atomic` to `restriction`
By rust-lang#4295, the general consensus seems to be that `mutex_atomic` is not a useful lint in most cases. If anything, it could be useful as a restriction on code that for whatever reason can't use atomics. Keeping it in `clippy::nursery` is harmful to people attempting to use clippy for soundness.
---
changelog: Moved [`mutex_atomic`] to `restriction`
[rust-lang#10115](rust-lang/rust-clippy#10115)
<!-- chnagelog_checked -->
Any library with no
#[no_std]
causes the failure.This is because
rustdoc::clean::Crate
containsexterns: HashMap<ast::CrateNum, ExternalCrate>
so output is like{1: (...), 2: (...)}
.The text was updated successfully, but these errors were encountered: