From 77115d8de55f40e4340e5623341d79c69675e035 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 20:24:42 +0000 Subject: [PATCH] Update itertools requirement from 0.11.0 to 0.12.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.11.0...v0.12.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 c1512334e7..1dfb6320c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ smallvec = "1.8.0" rayon = "1.5.2" lru = "0.12.0" fastdivide = "0.4.0" -itertools = "0.11.0" +itertools = "0.12.0" measure_time = "0.8.2" async-trait = "0.1.53" arc-swap = "1.5.0" diff --git a/columnar/Cargo.toml b/columnar/Cargo.toml index 43da09afda..6728283df5 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.11.0" +itertools = "0.12.0" fnv = "1.0.7" fastdivide = "0.4.0"