From 09898c132adc426b4e534a96e12442a756817f2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 20:36:00 +0000 Subject: [PATCH] Update rand_xoshiro requirement from 0.6 to 0.7 Updates the requirements on [rand_xoshiro](https://github.com/rust-random/rngs) to permit the latest version. - [Commits](https://github.com/rust-random/rngs/compare/rand_xoshiro-0.6.0...rand_xoshiro-0.7.0) --- updated-dependencies: - dependency-name: rand_xoshiro dependency-version: 0.7.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- algorithms/linfa-clustering/Cargo.toml | 2 +- algorithms/linfa-elasticnet/Cargo.toml | 2 +- algorithms/linfa-ftrl/Cargo.toml | 2 +- algorithms/linfa-ica/Cargo.toml | 2 +- algorithms/linfa-nn/Cargo.toml | 2 +- algorithms/linfa-pls/Cargo.toml | 2 +- algorithms/linfa-reduction/Cargo.toml | 2 +- algorithms/linfa-svm/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/algorithms/linfa-clustering/Cargo.toml b/algorithms/linfa-clustering/Cargo.toml index 2146a04e6..4af698d6e 100644 --- a/algorithms/linfa-clustering/Cargo.toml +++ b/algorithms/linfa-clustering/Cargo.toml @@ -41,7 +41,7 @@ ndarray-linalg = { version = "0.17", optional = true } ndarray-rand = "0.15" ndarray-stats = "0.6" num-traits = "0.2" -rand_xoshiro = "0.6" +rand_xoshiro = "0.7" space = "0.12" thiserror = "2.0" #partitions = "0.2.4" This one will break in a future version of Rust and has no replacement diff --git a/algorithms/linfa-elasticnet/Cargo.toml b/algorithms/linfa-elasticnet/Cargo.toml index 79577cf50..59c8b3179 100644 --- a/algorithms/linfa-elasticnet/Cargo.toml +++ b/algorithms/linfa-elasticnet/Cargo.toml @@ -45,4 +45,4 @@ linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [ "linnerud", ] } ndarray-rand = "0.15" -rand_xoshiro = "0.6" +rand_xoshiro = "0.7" diff --git a/algorithms/linfa-ftrl/Cargo.toml b/algorithms/linfa-ftrl/Cargo.toml index 1e3845c87..f5234cc86 100644 --- a/algorithms/linfa-ftrl/Cargo.toml +++ b/algorithms/linfa-ftrl/Cargo.toml @@ -30,7 +30,7 @@ argmin = { version = "0.11.0", default-features = false } argmin-math = { version = "0.5", features = ["ndarray_v0_16-nolinalg"] } thiserror = "2.0" rand = "0.8.5" -rand_xoshiro = "0.6.0" +rand_xoshiro = "0.7.0" linfa = { version = "0.8.0", path = "../.." } diff --git a/algorithms/linfa-ica/Cargo.toml b/algorithms/linfa-ica/Cargo.toml index f6ac6685a..f067e9ac8 100644 --- a/algorithms/linfa-ica/Cargo.toml +++ b/algorithms/linfa-ica/Cargo.toml @@ -31,7 +31,7 @@ ndarray-linalg = { version = "0.17", optional = true } ndarray-rand = "0.15" ndarray-stats = "0.6" num-traits = "0.2" -rand_xoshiro = "0.6" +rand_xoshiro = "0.7" thiserror = "2.0" linfa = { version = "0.8.0", path = "../.." } diff --git a/algorithms/linfa-nn/Cargo.toml b/algorithms/linfa-nn/Cargo.toml index bbf427882..cfaac658e 100644 --- a/algorithms/linfa-nn/Cargo.toml +++ b/algorithms/linfa-nn/Cargo.toml @@ -38,7 +38,7 @@ linfa = { version = "0.8.0", path = "../.." } [dev-dependencies] approx = "0.5" criterion = "0.5" -rand_xoshiro = "0.6" +rand_xoshiro = "0.7" ndarray-rand = "0.15" linfa = { version = "0.8.0", path = "../..", features = ["benchmarks"] } diff --git a/algorithms/linfa-pls/Cargo.toml b/algorithms/linfa-pls/Cargo.toml index 1a6735687..18e9c08cb 100644 --- a/algorithms/linfa-pls/Cargo.toml +++ b/algorithms/linfa-pls/Cargo.toml @@ -41,7 +41,7 @@ linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [ "linnerud", ] } approx = "0.5" -rand_xoshiro = "0.6" +rand_xoshiro = "0.7" criterion = "0.5" statrs = "0.18" diff --git a/algorithms/linfa-reduction/Cargo.toml b/algorithms/linfa-reduction/Cargo.toml index df33a82af..1863a45e7 100644 --- a/algorithms/linfa-reduction/Cargo.toml +++ b/algorithms/linfa-reduction/Cargo.toml @@ -45,7 +45,7 @@ rand = { version = "0.8", features = ["small_rng"] } linfa = { version = "0.8.0", path = "../.." } linfa-kernel = { version = "0.8.0", path = "../linfa-kernel" } sprs = { version = "0.11" } -rand_xoshiro = "0.6.0" +rand_xoshiro = "0.7.0" [dev-dependencies] ndarray-npy = { version = "0.9", default-features = false } diff --git a/algorithms/linfa-svm/Cargo.toml b/algorithms/linfa-svm/Cargo.toml index cf8623d50..dbd04c89d 100644 --- a/algorithms/linfa-svm/Cargo.toml +++ b/algorithms/linfa-svm/Cargo.toml @@ -37,5 +37,5 @@ linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [ "winequality", "diabetes", ] } -rand_xoshiro = "0.6" +rand_xoshiro = "0.7" approx = "0.5"