From de90c70c37530aee018caf15a90ca4024edd63b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Jun 2024 11:52:12 +0100 Subject: [PATCH] build(deps): bump itertools from 0.12.1 to 0.13.0 (#5456) Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.12.1 to 0.13.0. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.12.1...v0.13.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 19 ++++++++++++++----- chain/ethereum/Cargo.toml | 2 +- graph/Cargo.toml | 2 +- store/postgres/Cargo.toml | 2 +- 4 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ab50059c09..6a5f80c48cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1623,7 +1623,7 @@ dependencies = [ "hyper 1.3.1", "hyper-util", "isatty", - "itertools 0.12.1", + "itertools 0.13.0", "lazy_static", "lru_time_cache", "maplit", @@ -1721,7 +1721,7 @@ dependencies = [ "graph-runtime-derive", "graph-runtime-wasm", "hex", - "itertools 0.12.1", + "itertools 0.13.0", "jsonrpc-core", "prost 0.12.6", "prost-types 0.12.6", @@ -1969,7 +1969,7 @@ dependencies = [ "graph", "graphql-parser", "hex", - "itertools 0.12.1", + "itertools 0.13.0", "lazy_static", "lru_time_cache", "maybe-owned", @@ -2619,6 +2619,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.11" @@ -3661,7 +3670,7 @@ checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4" dependencies = [ "bytes", "heck 0.5.0", - "itertools 0.12.1", + "itertools 0.10.5", "log", "multimap", "once_cell", @@ -3694,7 +3703,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" dependencies = [ "anyhow", - "itertools 0.12.1", + "itertools 0.10.5", "proc-macro2", "quote", "syn 2.0.66", diff --git a/chain/ethereum/Cargo.toml b/chain/ethereum/Cargo.toml index ca6ca05913c..bda8974d095 100644 --- a/chain/ethereum/Cargo.toml +++ b/chain/ethereum/Cargo.toml @@ -15,7 +15,7 @@ tiny-keccak = "1.5.0" hex = "0.4.3" semver = "1.0.23" -itertools = "0.12.1" +itertools = "0.13.0" graph-runtime-wasm = { path = "../../runtime/wasm" } graph-runtime-derive = { path = "../../runtime/derive" } diff --git a/graph/Cargo.toml b/graph/Cargo.toml index 621aa7985c5..ff88c7c4a33 100644 --- a/graph/Cargo.toml +++ b/graph/Cargo.toml @@ -82,7 +82,7 @@ futures03 = { version = "0.3.1", package = "futures", features = ["compat"] } wasmparser = "0.118.1" thiserror = "1.0.25" parking_lot = "0.12.3" -itertools = "0.12.1" +itertools = "0.13.0" defer = "0.2" # Our fork contains patches to make some fields optional for Celo and Fantom compatibility. diff --git a/store/postgres/Cargo.toml b/store/postgres/Cargo.toml index 099c95d25c0..c770316cdba 100644 --- a/store/postgres/Cargo.toml +++ b/store/postgres/Cargo.toml @@ -27,7 +27,7 @@ uuid = { version = "1.8.0", features = ["v4"] } stable-hash_legacy = { git = "https://github.com/graphprotocol/stable-hash", branch = "old", package = "stable-hash" } anyhow = "1.0.86" git-testament = "0.2.5" -itertools = "0.12.1" +itertools = "0.13.0" hex = "0.4.3" pretty_assertions = "1.4.0"