From 64f62f5ee0c6a2111e0921522e3505fd4eaade5a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 03:07:02 +0000 Subject: [PATCH] Update rand requirement from 0.9 to 0.10 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/rand_core-0.9.1...0.10.0) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- plotly/Cargo.toml | 2 +- plotly_static/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plotly/Cargo.toml b/plotly/Cargo.toml index a86426ae..48cfef16 100644 --- a/plotly/Cargo.toml +++ b/plotly/Cargo.toml @@ -69,7 +69,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_repr = "0.1" serde_with = ">=2, <4" -rand = { version = "0.9", default-features = false, features = [ +rand = { version = "0.10", default-features = false, features = [ "small_rng", "alloc", ] } diff --git a/plotly_static/Cargo.toml b/plotly_static/Cargo.toml index 4e233cc7..0c355eba 100644 --- a/plotly_static/Cargo.toml +++ b/plotly_static/Cargo.toml @@ -22,7 +22,7 @@ debug = [] [dependencies] log = "0.4" serde = { version = "1.0", features = ["derive"] } -rand = "0.9" +rand = "0.10" serde_json = "1.0" base64 = "0.22" fantoccini = "0.22"