From 459b1721a9e4015fc13ac59794c7cce8b93145ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 00:32:40 +0000 Subject: [PATCH] Build(deps): bump ndarray from 0.16.1 to 0.17.2 in /light-curve Bumps [ndarray](https://github.com/rust-ndarray/ndarray) from 0.16.1 to 0.17.2. - [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.1...0.17.2) --- updated-dependencies: - dependency-name: ndarray dependency-version: 0.17.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- light-curve/Cargo.lock | 21 ++++++++++++++++++--- light-curve/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/light-curve/Cargo.lock b/light-curve/Cargo.lock index 7877748a..c7050df7 100644 --- a/light-curve/Cargo.lock +++ b/light-curve/Cargo.lock @@ -1169,7 +1169,7 @@ dependencies = [ "light-curve-feature", "macro_const", "mimalloc", - "ndarray 0.16.1", + "ndarray 0.17.2", "num-traits", "num_cpus", "numpy", @@ -1298,10 +1298,25 @@ dependencies = [ "portable-atomic", "portable-atomic-util", "rawpointer", - "rayon", "serde", ] +[[package]] +name = "ndarray" +version = "0.17.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d" +dependencies = [ + "matrixmultiply", + "num-complex", + "num-integer", + "num-traits", + "portable-atomic", + "portable-atomic-util", + "rawpointer", + "rayon", +] + [[package]] name = "ndarray-stats" version = "0.6.0" @@ -1408,7 +1423,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fa24ffc88cf9d43f7269d6b6a0d0a00010924a8cc90604a21ef9c433b66998d" dependencies = [ "libc", - "ndarray 0.16.1", + "ndarray 0.15.6", "num-complex", "num-integer", "num-traits", diff --git a/light-curve/Cargo.toml b/light-curve/Cargo.toml index 2d3ecf00..73cf3c03 100644 --- a/light-curve/Cargo.toml +++ b/light-curve/Cargo.toml @@ -46,7 +46,7 @@ macro_const = "0.1.0" mimalloc = { version = "0.1.48", features = [ "local_dynamic_tls", ], optional = true } -ndarray = { version = "0.16.1", features = ["rayon"] } +ndarray = { version = "0.17.2", features = ["rayon"] } numpy = "0.27.0" num_cpus = "1.17.0" num-traits = "0.2"