From 0ace610634d3449d8c0fee73b92ac75df41f250e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Feb 2025 02:54:49 +0000 Subject: [PATCH] chore(deps): update rand requirement from 0.8.5 to 0.9.0 Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.5...0.9.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- forrustts-core/Cargo.toml | 2 +- forrustts-genetics/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/forrustts-core/Cargo.toml b/forrustts-core/Cargo.toml index 0301a838..f27c00a4 100644 --- a/forrustts-core/Cargo.toml +++ b/forrustts-core/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["simulation", "tree_sequences", "tskit", "population_genetics"] [dependencies] thiserror = "1.0" # NOTE: automagically adds rand as a cargo feature -rand = { version = "0.8.5", optional = true } +rand = { version = "0.9.0", optional = true } [dev-dependencies] proptest = "1.1.0" diff --git a/forrustts-genetics/Cargo.toml b/forrustts-genetics/Cargo.toml index eae9de75..125acd49 100644 --- a/forrustts-genetics/Cargo.toml +++ b/forrustts-genetics/Cargo.toml @@ -13,5 +13,5 @@ keywords = ["simulation", "tree_sequences", "tskit", "population_genetics"] [dependencies] forrustts-core = { version = "0.1.0", path = "../forrustts-core", features = ["rand"]} -rand = "0.8.5" +rand = "0.9.0" rand_distr = "0.4.3"