From e97e9458c6cd2aaa4b80f094cc253c54e11e500f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:39:12 +0000 Subject: [PATCH] Bump itertools from 0.13.0 to 0.14.0 Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.13.0 to 0.14.0. - [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 update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 ++++++++++- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 99feb02..0aebb44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1356,6 +1356,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.11" @@ -2848,7 +2857,7 @@ dependencies = [ "futures", "glob", "human-panic", - "itertools 0.13.0", + "itertools 0.14.0", "json5", "lazy_static", "libc", diff --git a/Cargo.toml b/Cargo.toml index d1bee6f..b011078 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ async-compression = { version = "0.4.12", features = ["gzip", "tokio"], optional glob = { version = "0.3.1", optional = true } polars = { version = "0.41.3", optional = true, default-features = false, features = ["csv", "lazy", "fmt", "polars-ops", "asof_join", "ndarray"] } plotters = { version = "0.3.7", optional = true } -itertools = { version = "0.13.0", optional = true } +itertools = { version = "0.14.0", optional = true } colorgrad = { version = "0.6.2", optional = true } ndarray = { version = "0.16.1", optional = true } ndarray-stats = { version = "0.5.1", optional = true }