chore(deps): update rust crate itertools to 0.13.0 #7

Merged
kjuulh merged 1 commits from renovate/all into main 2024-05-16 19:01:11 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
itertools workspace.dependencies minor 0.12.1 -> 0.13.0

Release Notes

rust-itertools/itertools

v0.13.0

Compare Source

Breaking
  • Removed implementation of DoubleEndedIterator for ConsTuples (#​853)
  • Made MultiProduct fused and fixed on an empty iterator (#​835, #​834)
  • Changed iproduct! to return tuples for maxi one iterator too (#​870)
  • Changed PutBack::put_back to return the old value (#​880)
  • Removed deprecated repeat_call, Itertools::{foreach, step, map_results, fold_results} (#​878)
  • Removed TakeWhileInclusive::new (#​912)
Added
  • Added Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key} (#​654, #​885)
  • Added Itertools::tail (#​899)
  • Implemented DoubleEndedIterator for ProcessResults (#​910)
  • Implemented Debug for FormatWith (#​931)
  • Added Itertools::get (#​891)
Changed
  • Deprecated Itertools::group_by (renamed chunk_by) (#​866, #​879)
  • Deprecated unfold (use std::iter::from_fn instead) (#​871)
  • Optimized GroupingMapBy (#​873, #​876)
  • Relaxed Fn bounds to FnMut in diff_with, Itertools::into_group_map_by (#​886)
  • Relaxed Debug/Clone bounds for MapInto (#​889)
  • Documented the use_alloc feature (#​887)
  • Optimized Itertools::set_from (#​888)
  • Removed badges in README.md (#​890)
  • Added "no-std" categories in Cargo.toml (#​894)
  • Fixed Itertools::k_smallest on short unfused iterators (#​900)
  • Deprecated Itertools::tree_fold1 (renamed tree_reduce) (#​895)
  • Deprecated GroupingMap::fold_first (renamed reduce) (#​902)
  • Fixed Itertools::k_smallest(0) to consume the iterator, optimized Itertools::k_smallest(1) (#​909)
  • Specialized Combinations::nth (#​914)
  • Specialized MergeBy::fold (#​920)
  • Specialized CombinationsWithReplacement::nth (#​923)
  • Specialized FlattenOk::{fold, rfold} (#​927)
  • Specialized Powerset::nth (#​924)
  • Documentation fixes (#​882, #​936)
  • Fixed assert_equal for iterators longer than i32::MAX (#​932)
  • Updated the must_use message of non-lazy KMergeBy and TupleCombinations (#​939)
Notable Internal Changes
  • Tested iterator laziness (#​792)
  • Created CONTRIBUTING.md (#​767)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [itertools](https://github.com/rust-itertools/itertools) | workspace.dependencies | minor | `0.12.1` -> `0.13.0` | --- ### Release Notes <details> <summary>rust-itertools/itertools</summary> ### [`v0.13.0`](https://github.com/rust-itertools/itertools/blob/HEAD/CHANGELOG.md#&#8203;0130) [Compare Source](https://github.com/rust-itertools/itertools/compare/v0.12.1...v0.13.0) ##### Breaking - Removed implementation of `DoubleEndedIterator` for `ConsTuples` ([#&#8203;853](https://github.com/rust-itertools/itertools/issues/853)) - Made `MultiProduct` fused and fixed on an empty iterator ([#&#8203;835](https://github.com/rust-itertools/itertools/issues/835), [#&#8203;834](https://github.com/rust-itertools/itertools/issues/834)) - Changed `iproduct!` to return tuples for maxi one iterator too ([#&#8203;870](https://github.com/rust-itertools/itertools/issues/870)) - Changed `PutBack::put_back` to return the old value ([#&#8203;880](https://github.com/rust-itertools/itertools/issues/880)) - Removed deprecated `repeat_call, Itertools::{foreach, step, map_results, fold_results}` ([#&#8203;878](https://github.com/rust-itertools/itertools/issues/878)) - Removed `TakeWhileInclusive::new` ([#&#8203;912](https://github.com/rust-itertools/itertools/issues/912)) ##### Added - Added `Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key}` ([#&#8203;654](https://github.com/rust-itertools/itertools/issues/654), [#&#8203;885](https://github.com/rust-itertools/itertools/issues/885)) - Added `Itertools::tail` ([#&#8203;899](https://github.com/rust-itertools/itertools/issues/899)) - Implemented `DoubleEndedIterator` for `ProcessResults` ([#&#8203;910](https://github.com/rust-itertools/itertools/issues/910)) - Implemented `Debug` for `FormatWith` ([#&#8203;931](https://github.com/rust-itertools/itertools/issues/931)) - Added `Itertools::get` ([#&#8203;891](https://github.com/rust-itertools/itertools/issues/891)) ##### Changed - Deprecated `Itertools::group_by` (renamed `chunk_by`) ([#&#8203;866](https://github.com/rust-itertools/itertools/issues/866), [#&#8203;879](https://github.com/rust-itertools/itertools/issues/879)) - Deprecated `unfold` (use `std::iter::from_fn` instead) ([#&#8203;871](https://github.com/rust-itertools/itertools/issues/871)) - Optimized `GroupingMapBy` ([#&#8203;873](https://github.com/rust-itertools/itertools/issues/873), [#&#8203;876](https://github.com/rust-itertools/itertools/issues/876)) - Relaxed `Fn` bounds to `FnMut` in `diff_with, Itertools::into_group_map_by` ([#&#8203;886](https://github.com/rust-itertools/itertools/issues/886)) - Relaxed `Debug/Clone` bounds for `MapInto` ([#&#8203;889](https://github.com/rust-itertools/itertools/issues/889)) - Documented the `use_alloc` feature ([#&#8203;887](https://github.com/rust-itertools/itertools/issues/887)) - Optimized `Itertools::set_from` ([#&#8203;888](https://github.com/rust-itertools/itertools/issues/888)) - Removed badges in `README.md` ([#&#8203;890](https://github.com/rust-itertools/itertools/issues/890)) - Added "no-std" categories in `Cargo.toml` ([#&#8203;894](https://github.com/rust-itertools/itertools/issues/894)) - Fixed `Itertools::k_smallest` on short unfused iterators ([#&#8203;900](https://github.com/rust-itertools/itertools/issues/900)) - Deprecated `Itertools::tree_fold1` (renamed `tree_reduce`) ([#&#8203;895](https://github.com/rust-itertools/itertools/issues/895)) - Deprecated `GroupingMap::fold_first` (renamed `reduce`) ([#&#8203;902](https://github.com/rust-itertools/itertools/issues/902)) - Fixed `Itertools::k_smallest(0)` to consume the iterator, optimized `Itertools::k_smallest(1)` ([#&#8203;909](https://github.com/rust-itertools/itertools/issues/909)) - Specialized `Combinations::nth` ([#&#8203;914](https://github.com/rust-itertools/itertools/issues/914)) - Specialized `MergeBy::fold` ([#&#8203;920](https://github.com/rust-itertools/itertools/issues/920)) - Specialized `CombinationsWithReplacement::nth` ([#&#8203;923](https://github.com/rust-itertools/itertools/issues/923)) - Specialized `FlattenOk::{fold, rfold}` ([#&#8203;927](https://github.com/rust-itertools/itertools/issues/927)) - Specialized `Powerset::nth` ([#&#8203;924](https://github.com/rust-itertools/itertools/issues/924)) - Documentation fixes ([#&#8203;882](https://github.com/rust-itertools/itertools/issues/882), [#&#8203;936](https://github.com/rust-itertools/itertools/issues/936)) - Fixed `assert_equal` for iterators longer than `i32::MAX` ([#&#8203;932](https://github.com/rust-itertools/itertools/issues/932)) - Updated the `must_use` message of non-lazy `KMergeBy` and `TupleCombinations` ([#&#8203;939](https://github.com/rust-itertools/itertools/issues/939)) ##### Notable Internal Changes - Tested iterator laziness ([#&#8203;792](https://github.com/rust-itertools/itertools/issues/792)) - Created `CONTRIBUTING.md` ([#&#8203;767](https://github.com/rust-itertools/itertools/issues/767)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->
kjuulh added 1 commit 2024-05-16 18:29:22 +02:00
chore(deps): update rust crate itertools to 0.13.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
44d9ed2790
kjuulh merged commit 44d9ed2790 into main 2024-05-16 19:01:11 +02:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/hyperlog#7
No description provided.