From 7a19d2d2f3911423c8e0ed69a618cd542dc23864 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 19:59:37 +0000 Subject: [PATCH 1/2] Update modcholesky requirement from 0.1 to 0.2 Updates the requirements on [modcholesky](https://github.com/argmin-rs/modcholesky) to permit the latest version. - [Commits](https://github.com/argmin-rs/modcholesky/commits) --- updated-dependencies: - dependency-name: modcholesky dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7369a45d..46d05294 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -101,7 +101,7 @@ roots = "0.0.8" # Least squares solver (NOTE: ndarray must be version 0.15 - not 0.16) # Bug report: https://github.com/argmin-rs/modcholesky/issues/34 ndarray = { version = "0.15", features = ["approx"] } -modcholesky = "0.1" +modcholesky = "0.2" # jemallocator is an optional feature; it will only be loaded if the feature # `jem` is used (i.e., if we compile with `cargo build --features jem`) From 637a8ae8b561e8a907a3d3254edfe4006a9e1e7d Mon Sep 17 00:00:00 2001 From: Pantelis Sopasakis Date: Thu, 22 May 2025 13:37:54 +0100 Subject: [PATCH 2/2] bump ndarray to =0.16.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 46d05294..00393acb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -100,7 +100,7 @@ roots = "0.0.8" # Least squares solver (NOTE: ndarray must be version 0.15 - not 0.16) # Bug report: https://github.com/argmin-rs/modcholesky/issues/34 -ndarray = { version = "0.15", features = ["approx"] } +ndarray = { version = "=0.16.1", features = ["approx"] } modcholesky = "0.2" # jemallocator is an optional feature; it will only be loaded if the feature