From feac04c909c071f000b6fc225c8a653c1dd9a4ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 20:57:47 +0000 Subject: [PATCH] Update itertools requirement from 0.13.0 to 0.14.0 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.13.0...v0.14.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- columnar/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 41058dcfb5..432401f1b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ smallvec = "1.8.0" rayon = "1.5.2" lru = "0.12.0" fastdivide = "0.4.0" -itertools = "0.13.0" +itertools = "0.14.0" measure_time = "0.9.0" arc-swap = "1.5.0" diff --git a/columnar/Cargo.toml b/columnar/Cargo.toml index 1685f95686..d4a8f4a8d9 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.13.0" +itertools = "0.14.0" fastdivide = "0.4.0" stacker = { version= "0.3", path = "../stacker", package="tantivy-stacker"}