From f812694959cdcbc6770aae8b5d4362eda222202b Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 22 Jun 2024 23:50:08 +0700 Subject: [PATCH] deps: Update to `itertools` 0.13 (#1398) --- Cargo.toml | 2 +- nalgebra-sparse/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 96cefa18..cfa337cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -120,7 +120,7 @@ nalgebra = { path = ".", features = ["debug", "compare", "rand", "macros"]} # For matrix comparison macro matrixcompare = "0.3.0" -itertools = "0.10" +itertools = "0.13" [workspace] members = [ "nalgebra-lapack", "nalgebra-glm", "nalgebra-sparse", "nalgebra-macros" ] diff --git a/nalgebra-sparse/Cargo.toml b/nalgebra-sparse/Cargo.toml index 3a1bd20d..586ab68d 100644 --- a/nalgebra-sparse/Cargo.toml +++ b/nalgebra-sparse/Cargo.toml @@ -33,7 +33,7 @@ pest_derive = { version = "2", optional = true } serde = { version = "1.0", default-features = false, features = [ "derive" ], optional = true } [dev-dependencies] -itertools = "0.10" +itertools = "0.13" matrixcompare = { version = "0.3.0", features = [ "proptest-support" ] } nalgebra = { version="0.32", path = "../", features = ["compare"] } tempfile = "3.3"