This is needed since without it, we don't get anything that the platform doesn't natively support, which is only up to 32 bits.
We newly need to change this because once_cell no longer imports with default features.
Fixes:
error[E0432]: unresolved import `portable_atomic::AtomicU128`
--> src/rng.rs:1:23
|
1 | use portable_atomic::{AtomicU128, Ordering};
| ^^^^^^^^^^
| |
| no `AtomicU128` in the root
| help: a similar name exists in the module: `AtomicU8`
Add fallback feature for portable-atomic.
This is needed since without it, we don't get anything that the platform doesn't natively support, which is only up to 32 bits.
We newly need to change this because once_cell no longer imports with default features.
Fixes: