Closed killercup closed 6 years ago
Breaking changes
- Rayon now requires rustc 1.13 or greater.
IndexedParallelIterator::len
andParallelIterator::opt_len
now operate on&self
instead of&mut self
.IndexedParallelIterator::collect_into
is nowcollect_into_vec
.IndexedParallelIterator::unzip_into
is nowunzip_into_vecs
.- Rayon no longer exports the deprecated
Configuration
andinitialize
from rayon-core.rustc 1.13 or greater
If quicli
already requires rustc >= 1.13, we're good here. That doesn't seem to be explicitly documented yet.
IndexedParallelIterator::{len, collect_into[_vec], unzip_into[_vec]}
andParallelIterator::opt_len
Both traits are in rayon::prelude
and are thus publicly re-exported from quicli
, making a breaking change there a breaking change to quicli
.
Configuration
andinitialize
Were not exported in rayon::prelude
, so doesn't effect the stability of quicli
.
quicli re-exports proc-macros, so it requires 1.15+ (I've only tested it with the latest stable, though.)
Alright, it's a major version bump, then. I'm totally fine with that, we still have some version numbers left to use :)
As #73 was merged, you should probably close this issue, right?
Yep! Thanks :)