From fe3ae054f97e2d8497b5f0b18bcd65aadde32e72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 19:37:21 +0000 Subject: [PATCH] Bump ndarray-rand from 0.15.0 to 0.16.0 Bumps [ndarray-rand](https://github.com/rust-ndarray/ndarray) from 0.15.0 to 0.16.0. - [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/ndarray-rand-0.15.0...ndarray-rand-0.16.0) --- updated-dependencies: - dependency-name: ndarray-rand dependency-version: 0.16.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 39 ++++++++++++++++++++++++++++++--------- Cargo.toml | 2 +- 2 files changed, 31 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 911b043f..08c12b4f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -632,7 +632,7 @@ dependencies = [ "linfa", "log", "ndarray 0.16.1", - "ndarray-rand", + "ndarray-rand 0.16.0", "numpy", "pyo3", "pyo3-log", @@ -650,7 +650,7 @@ dependencies = [ "criterion", "linfa", "ndarray 0.16.1", - "ndarray-rand", + "ndarray-rand 0.16.0", "ndarray-stats", "num-traits", "rand_xoshiro 0.6.0", @@ -686,7 +686,7 @@ dependencies = [ "ndarray 0.16.1", "ndarray-linalg", "ndarray-npy", - "ndarray-rand", + "ndarray-rand 0.16.0", "ndarray-stats", "nlopt", "paste", @@ -721,7 +721,7 @@ dependencies = [ "ndarray-einsum", "ndarray-linalg", "ndarray-npy", - "ndarray-rand", + "ndarray-rand 0.16.0", "ndarray-stats", "nlopt", "num-traits", @@ -756,7 +756,7 @@ dependencies = [ "ndarray-csv", "ndarray-linalg", "ndarray-npy", - "ndarray-rand", + "ndarray-rand 0.16.0", "ndarray-stats", "paste", "rand_xoshiro 0.6.0", @@ -1250,7 +1250,7 @@ dependencies = [ "linfa-linalg", "linfa-nn", "ndarray 0.16.1", - "ndarray-rand", + "ndarray-rand 0.15.0", "ndarray-stats", "noisy_float", "num-traits", @@ -1298,7 +1298,7 @@ dependencies = [ "linfa-linalg", "ndarray 0.16.1", "ndarray-linalg", - "ndarray-rand", + "ndarray-rand 0.15.0", "ndarray-stats", "num-traits", "paste", @@ -1431,7 +1431,7 @@ dependencies = [ "num-rational", "num-traits", "rand 0.8.5", - "rand_distr", + "rand_distr 0.4.3", "simba", "typenum", ] @@ -1534,7 +1534,18 @@ checksum = "f093b3db6fd194718dcdeea6bd8c829417deae904e3fcc7732dabcd4416d25d8" dependencies = [ "ndarray 0.16.1", "rand 0.8.5", - "rand_distr", + "rand_distr 0.4.3", +] + +[[package]] +name = "ndarray-rand" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180f724d496e84764e8ecf28fbe1da74ef231ec4ba15be65a9100be8445d73e3" +dependencies = [ + "ndarray 0.17.1", + "rand 0.9.2", + "rand_distr 0.5.1", ] [[package]] @@ -2111,6 +2122,16 @@ dependencies = [ "rand 0.8.5", ] +[[package]] +name = "rand_distr" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463" +dependencies = [ + "num-traits", + "rand 0.9.2", +] + [[package]] name = "rand_xoshiro" version = "0.6.0" diff --git a/Cargo.toml b/Cargo.toml index 9fe2a790..21972a5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ linfa = { version = "0.8", default-features = false } linfa-linalg = { version = "0.2", default-features = false } ndarray = { version = "0.16", features = ["rayon", "approx"] } -ndarray-rand = "0.15" +ndarray-rand = "0.16" ndarray-stats = "0.6" ndarray-npy = "0.9" statrs = "0.18"