From a56b712ba9637c1035db9c62d37a986a3ef11cb9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 04:06:43 +0000 Subject: [PATCH] Update ndarray-linalg requirement from 0.17 to 0.18 Updates the requirements on [ndarray-linalg](https://github.com/rust-ndarray/ndarray-linalg) to permit the latest version. - [Release notes](https://github.com/rust-ndarray/ndarray-linalg/releases) - [Commits](https://github.com/rust-ndarray/ndarray-linalg/compare/ndarray-linalg-v0.17.0...ndarray-linalg-v0.18.0) --- updated-dependencies: - dependency-name: ndarray-linalg dependency-version: 0.18.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/argmin/Cargo.toml | 2 +- examples/gaussnewton/Cargo.toml | 2 +- examples/gaussnewton_linesearch/Cargo.toml | 2 +- examples/newton/Cargo.toml | 2 +- examples/trustregion/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/argmin/Cargo.toml b/crates/argmin/Cargo.toml index c9f55983b..39a570919 100644 --- a/crates/argmin/Cargo.toml +++ b/crates/argmin/Cargo.toml @@ -34,7 +34,7 @@ approx = "0.5.0" finitediff = { version = "0.2.0", path = "../finitediff", features = ["ndarray"] } argmin_testfunctions = { version = "0.3.0", path = "../argmin-testfunctions" } ndarray = { version = "0.16", features = ["serde-1"] } -ndarray-linalg = { version = "0.17", features = ["intel-mkl-static"] } +ndarray-linalg = { version = "0.18", features = ["intel-mkl-static"] } argmin-math = { path = "../argmin-math", version = "0.5", features = ["vec"] } argmin-observer-slog = { path = "../argmin-observer-slog" } argmin-observer-paramwriter = { path = "../argmin-observer-paramwriter" } diff --git a/examples/gaussnewton/Cargo.toml b/examples/gaussnewton/Cargo.toml index 8a6328433..7091b715e 100644 --- a/examples/gaussnewton/Cargo.toml +++ b/examples/gaussnewton/Cargo.toml @@ -10,4 +10,4 @@ argmin = { version = "*", path = "../../crates/argmin" } argmin-math = { version = "*", features = ["ndarray_latest"], path = "../../crates/argmin-math" } argmin-observer-slog = { version = "*", path = "../../crates/argmin-observer-slog" } ndarray = "0.16" -ndarray-linalg = { version = "0.17.0", features = ["intel-mkl"] } +ndarray-linalg = { version = "0.18.0", features = ["intel-mkl"] } diff --git a/examples/gaussnewton_linesearch/Cargo.toml b/examples/gaussnewton_linesearch/Cargo.toml index 659eaebb0..80085311a 100644 --- a/examples/gaussnewton_linesearch/Cargo.toml +++ b/examples/gaussnewton_linesearch/Cargo.toml @@ -10,4 +10,4 @@ argmin = { version = "*", path = "../../crates/argmin" } argmin-math = { version = "*", features = ["ndarray_latest"], path = "../../crates/argmin-math" } argmin-observer-slog = { version = "*", path = "../../crates/argmin-observer-slog" } ndarray = "0.16" -ndarray-linalg = { version = "0.17.0", features = ["intel-mkl"] } +ndarray-linalg = { version = "0.18.0", features = ["intel-mkl"] } diff --git a/examples/newton/Cargo.toml b/examples/newton/Cargo.toml index 826ed7a60..f42193012 100644 --- a/examples/newton/Cargo.toml +++ b/examples/newton/Cargo.toml @@ -11,4 +11,4 @@ argmin-math = { version = "*", features = ["ndarray_latest"], path = "../../crat argmin-observer-slog = { version = "*", path = "../../crates/argmin-observer-slog" } argmin_testfunctions = { version = "*", path = "../../crates/argmin-testfunctions" } ndarray = "0.16" -ndarray-linalg = { version = "0.17.0", features = ["intel-mkl"] } +ndarray-linalg = { version = "0.18.0", features = ["intel-mkl"] } diff --git a/examples/trustregion/Cargo.toml b/examples/trustregion/Cargo.toml index 71fdcf414..af3a8ae3e 100644 --- a/examples/trustregion/Cargo.toml +++ b/examples/trustregion/Cargo.toml @@ -11,4 +11,4 @@ argmin-math = { version = "*", features = ["ndarray_latest"], path = "../../crat argmin-observer-slog = { version = "*", path = "../../crates/argmin-observer-slog" } argmin_testfunctions = { version = "*", path = "../../crates/argmin-testfunctions" } ndarray = "0.16" -ndarray-linalg = { version = "0.17.0", features = ["intel-mkl-static"] } +ndarray-linalg = { version = "0.18.0", features = ["intel-mkl-static"] }