From b85335bd9c95b8ede23364d6c31a7197c8ddd0d2 Mon Sep 17 00:00:00 2001 From: Andreas Longva Date: Fri, 7 May 2021 09:23:44 +0200 Subject: [PATCH] Update matrixcompare version to 0.3.0 Fixes some warnings produced by earlier versions since Rust 1.51. See https://github.com/Andlon/matrixcompare/pull/5 for more details. Note that we only update dev-dependencies, so there is no API breakage. --- Cargo.toml | 2 +- nalgebra-sparse/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 45fdb17a..5c0b4e4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -88,7 +88,7 @@ rand_isaac = "0.3" criterion = "0.2.10" # For matrix comparison macro -matrixcompare = "0.2.0" +matrixcompare = "0.3.0" itertools = "0.10" [workspace] diff --git a/nalgebra-sparse/Cargo.toml b/nalgebra-sparse/Cargo.toml index 36dc8f30..6666bfb9 100644 --- a/nalgebra-sparse/Cargo.toml +++ b/nalgebra-sparse/Cargo.toml @@ -27,7 +27,7 @@ matrixcompare-core = { version = "0.1.0", optional = true } [dev-dependencies] itertools = "0.10" -matrixcompare = { version = "0.2.0", features = [ "proptest-support" ] } +matrixcompare = { version = "0.3.0", features = [ "proptest-support" ] } nalgebra = { version="0.26", path = "../", features = ["compare"] } [package.metadata.docs.rs]