From a8a17b3108f13433ce343779cdd437b4151929d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 00:38:13 +0000 Subject: [PATCH] build(deps): 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 | 13 +++++++++++-- Cargo.toml | 2 +- ai-test/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 751805a9..df13685e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -362,7 +362,7 @@ dependencies = [ "async-openai", "clap", "futures", - "itertools 0.13.0", + "itertools 0.14.0", "rumba", "serde", "serde_json", @@ -2758,6 +2758,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.10" @@ -4217,7 +4226,7 @@ dependencies = [ "harsh", "hmac", "hostname", - "itertools 0.13.0", + "itertools 0.14.0", "jsonwebtoken 9.3.0", "octocrab", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index f6226bc3..535d72c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ sqlx = { version = "0.7", features = ["macros", "runtime-tokio-rustls", "postgre elasticsearch = "7.17.7-alpha.1" harsh = "0.2" -itertools = "0.13" +itertools = "0.14" r2d2 = "0.8" openidconnect = "3" diff --git a/ai-test/Cargo.toml b/ai-test/Cargo.toml index 9fe6ca6b..832f40d9 100644 --- a/ai-test/Cargo.toml +++ b/ai-test/Cargo.toml @@ -16,5 +16,5 @@ tokio = { version = "1", features = ["full"] } anyhow = "1" futures = "0.3" async-openai = "0.14" -itertools = "0.13" +itertools = "0.14" rumba = { path = "../"}