From 80cfa3d97dde784bc32f8ef8014d24b8c2c8ffe5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Oct 2025 20:03:01 +0000 Subject: [PATCH] Update ndarray requirement from 0.16 to 0.17 Updates the requirements on [ndarray](https://github.com/rust-ndarray/ndarray) to permit the latest version. - [Release notes](https://github.com/rust-ndarray/ndarray/releases) - [Changelog](https://github.com/rust-ndarray/ndarray/blob/master/RELEASES.md) - [Commits](https://github.com/rust-ndarray/ndarray/compare/0.16.0...0.17.0) --- updated-dependencies: - dependency-name: ndarray dependency-version: 0.17.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 00c33bd..288f968 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ exclude = ["/.github", "/changeforest-py", "/changeforest-r", "/testdata", ".pre name = "changeforest" [dependencies] -ndarray = "0.16" +ndarray = "0.17" rand = "0.8" biosphere = "0.4.0" @@ -21,6 +21,6 @@ biosphere = "0.4.0" rstest = "0.26" assert_approx_eq = "1.1" ndarray-rand = "0.15" -ndarray = { version = "0.16", features = ["approx"] } +ndarray = { version = "0.17", features = ["approx"] } ndarray-csv = "^0.5" csv = "^1"