par_iter
is deprecated beacuse you can getter better composable results by simply concateneting methods on the iterator, likeiter(config).flat_map(pre_proc).par_bridge().for_each(task)
blocks_iterator::par_iter
accepts anArc<STATE>
instead of aSTATE
so it can be used after the call
blocks_iterator::iter
returns a proper iteratorblocks_iterator::par_iter
to iterate in parallel fashion
iterate
method become private in favor a real iterator throughiter
method- UTXO db format changed, it use more space but it allows to compute the UTXO set
- By default all features are enabled, exclude default features to decrease building times
- Increase MSRV to
1.56.1
- bitcoin dep increased to
0.28.0
- in
PipeIterator
streaming to stdout become optional, since it cost an additional serialization that one could avoid by forking previous stdout with the unixtee
command