From 7b534a26b1765f923554dc93f94f895b7441bc56 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 00:20:06 +0000 Subject: [PATCH] Build(deps): bump ndarray from 0.16.1 to 0.17.1 in /light-curve Bumps [ndarray](https://github.com/rust-ndarray/ndarray) from 0.16.1 to 0.17.1. - [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.1) --- updated-dependencies: - dependency-name: ndarray dependency-version: 0.17.1 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 3f21694f..6cfd5c20 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.1", "num-traits", "num_cpus", "numpy", @@ -1298,10 +1298,25 @@ dependencies = [ "portable-atomic", "portable-atomic-util", "rawpointer", - "rayon", "serde", ] +[[package]] +name = "ndarray" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c7c9125e8f6f10c9da3aad044cc918cf8784fa34de857b1aa68038eb05a50a9" +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 9ac32d3b..3d4717ca 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.1", features = ["rayon"] } numpy = "0.27.0" num_cpus = "1.17.0" num-traits = "0.2"