From e197b59258aebd756bb38252964ebc0e895a4aaf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 May 2024 02:53:02 +0200 Subject: [PATCH] Update itertools requirement from 0.12.0 to 0.13.0 (#2400) Updates the requirements on [itertools](https://github.com/rust-itertools/itertools) to permit the latest version. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.12.0...v0.13.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- columnar/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d072fe298..5605456b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ smallvec = "1.8.0" rayon = "1.5.2" lru = "0.12.0" fastdivide = "0.4.0" -itertools = "0.12.0" +itertools = "0.13.0" measure_time = "0.8.2" arc-swap = "1.5.0" diff --git a/columnar/Cargo.toml b/columnar/Cargo.toml index 36a5a55d5..e720ecf62 100644 --- a/columnar/Cargo.toml +++ b/columnar/Cargo.toml @@ -9,7 +9,7 @@ description = "column oriented storage for tantivy" categories = ["database-implementations", "data-structures", "compression"] [dependencies] -itertools = "0.12.0" +itertools = "0.13.0" fastdivide = "0.4.0" stacker = { version= "0.3", path = "../stacker", package="tantivy-stacker"}