From 59f4b5fc895153d63a07b655e1ab6336d1eb1d4b Mon Sep 17 00:00:00 2001 From: bluss Date: Fri, 23 Aug 2024 18:13:02 +0200 Subject: [PATCH 1/2] Upgrade itertools to 0.13 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6fb36e8..6a87202 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ noisy_float = "0.2.0" num-integer = "0.1" num-traits = "0.2" rand = "0.8.3" -itertools = { version = "0.10.0", default-features = false } +itertools = { version = "0.13", default-features = false } indexmap = "1.6.2" [dev-dependencies] From 327ee4ba74c96dd3bc845bdb300b0498e3ce2a8e Mon Sep 17 00:00:00 2001 From: Ulrik Sverdrup Date: Fri, 23 Aug 2024 18:14:22 +0200 Subject: [PATCH 2/2] Upgrade indexmap to 2.4 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6a87202..e910e91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ num-integer = "0.1" num-traits = "0.2" rand = "0.8.3" itertools = { version = "0.13", default-features = false } -indexmap = "1.6.2" +indexmap = "2.4" [dev-dependencies] ndarray = { version = "0.16.1", features = ["approx"] }