From e5e279df9d30c16451d4b31656c0be142c6bb7d9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 17:46:15 +0000 Subject: [PATCH] fix(deps): update rust crate itertools to v0.14.0 --- Cargo.lock | 15 +++------------ libs/spice/Cargo.toml | 2 +- libs/type_dispatch_macros/Cargo.toml | 2 +- tools/spectre/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 11b1dcc5..ab106cd6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1411,15 +1411,6 @@ version = "1.70.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" -[[package]] -name = "itertools" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" -dependencies = [ - "either", -] - [[package]] name = "itertools" version = "0.12.1" @@ -2635,7 +2626,7 @@ dependencies = [ "approx", "arcstr", "cache", - "itertools 0.11.0", + "itertools 0.14.0", "lazy_static", "num", "psfparser", @@ -2659,7 +2650,7 @@ dependencies = [ "arcstr", "ena", "enumify", - "itertools 0.11.0", + "itertools 0.14.0", "lazy_static", "nom", "num-traits", @@ -3209,7 +3200,7 @@ name = "type_dispatch_macros" version = "0.4.0" dependencies = [ "darling 0.20.10", - "itertools 0.11.0", + "itertools 0.14.0", "proc-macro-crate 1.3.1", "proc-macro-error", "proc-macro2", diff --git a/libs/spice/Cargo.toml b/libs/spice/Cargo.toml index 40c2eee4..a9af5d27 100644 --- a/libs/spice/Cargo.toml +++ b/libs/spice/Cargo.toml @@ -8,7 +8,7 @@ arcstr = { version = "1", features = ["serde", "substr-usize-indices"] } nom = "7" thiserror = "1" tracing = "0.1" -itertools = "0.11.0" +itertools = "0.14.0" rust_decimal = { version = "1", features = ["serde", "maths"] } rust_decimal_macros = "1" unicase = "2" diff --git a/libs/type_dispatch_macros/Cargo.toml b/libs/type_dispatch_macros/Cargo.toml index 7db02330..3fc22943 100644 --- a/libs/type_dispatch_macros/Cargo.toml +++ b/libs/type_dispatch_macros/Cargo.toml @@ -14,7 +14,7 @@ quote = "1" proc-macro2 = "1" proc-macro-crate = "1" proc-macro-error = "1" -itertools = "0.11.0" +itertools = "0.14.0" [dev-dependencies] type_dispatch = { version = "<=0.5.0", registry = "substrate", path = "../type_dispatch" } diff --git a/tools/spectre/Cargo.toml b/tools/spectre/Cargo.toml index 33de0981..df46c517 100644 --- a/tools/spectre/Cargo.toml +++ b/tools/spectre/Cargo.toml @@ -12,7 +12,7 @@ tera = "1" lazy_static = "1" serde = { version = "1", features = ["derive"] } tracing = "0.1" -itertools = "0.11" +itertools = "0.14" psfparser = "0.1.2" regex = "1.10.2" num = { version = "0.4.1", features = ["serde"] }