From 73fff4728343b7bc808647a61e1ee506a42a6087 Mon Sep 17 00:00:00 2001 From: Vincent Esche Date: Wed, 30 Oct 2024 15:18:06 +0100 Subject: [PATCH] Update `itertools` dependency from "0.12" to "0.13" --- ascent_macro/Cargo.toml | 2 +- ascent_tests/Cargo.toml | 2 +- byods/ascent-byods-rels/Cargo.toml | 2 +- byods/ascent-byods-rels/examples/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ascent_macro/Cargo.toml b/ascent_macro/Cargo.toml index 9c8608b..5a972c4 100644 --- a/ascent_macro/Cargo.toml +++ b/ascent_macro/Cargo.toml @@ -17,7 +17,7 @@ syn = { version = "2.0.57", features = ["derive", "full", "extra-traits", "visit quote = "1.0" ascent_base = { workspace = true } proc-macro2 = "1.0" -itertools = "0.12.0" +itertools = "0.13" petgraph = "0.6.0" derive-syn-parse = "0.2.0" lazy_static = "1.4.0" diff --git a/ascent_tests/Cargo.toml b/ascent_tests/Cargo.toml index 000abb6..83d07c7 100644 --- a/ascent_tests/Cargo.toml +++ b/ascent_tests/Cargo.toml @@ -11,7 +11,7 @@ ascent = { path = "../ascent", default-features = false } stopwatch = "0.0.7" bencher = "0.1.5" derive_more = "0.99.16" -itertools = "0.12" +itertools = "0.13" quote = "1.0" arrayvec = "0.7" const-fnv1a-hash = "1.0.1" diff --git a/byods/ascent-byods-rels/Cargo.toml b/byods/ascent-byods-rels/Cargo.toml index a5c084e..5efbca9 100644 --- a/byods/ascent-byods-rels/Cargo.toml +++ b/byods/ascent-byods-rels/Cargo.toml @@ -14,9 +14,9 @@ autoexamples = false [dependencies] ascent = { workspace = true, default-features = false } -itertools = "0.12" rustc-hash = "1.1" derive_more = "0.99.17" +itertools = "0.13" # syn is a dependency of derive_more 0.99, and the minimum version is buggy, so choosing a well-behaved # version. Should be removed when derive_more switches to syn v2.0. syn = "1.0.109" diff --git a/byods/ascent-byods-rels/examples/Cargo.toml b/byods/ascent-byods-rels/examples/Cargo.toml index 7cdeb19..e530fa3 100644 --- a/byods/ascent-byods-rels/examples/Cargo.toml +++ b/byods/ascent-byods-rels/examples/Cargo.toml @@ -12,7 +12,7 @@ autobins = false [dependencies] ascent = { path = "../../../ascent" } ascent-byods-rels = { path = ".." } -itertools = "0.12" +itertools = "0.13" serde = "1.0" csv = "1.0" separator = "0.4.1"