From 3745a67ba071d5a52e378af34f8409cd90912eb0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Apr 2025 21:14:44 +0300 Subject: [PATCH] build(deps): bump rand from 0.9.0 to 0.9.1 (#1804) Bumps [rand](https://github.com/rust-random/rand) from 0.9.0 to 0.9.1.
Changelog

Sourced from rand's changelog.

[0.9.1] - 2025-04-17

Security and unsafe

Fixes

Changes

Additions

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rand&package-manager=cargo&previous-version=0.9.0&new-version=0.9.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 17 ++++++++--------- examples/apps/demo/Cargo.toml | 2 +- examples/apps/demo2/Cargo.toml | 2 +- examples/apps/inline/Cargo.toml | 2 +- examples/apps/mouse-drawing/Cargo.toml | 2 +- examples/apps/weather/Cargo.toml | 2 +- ratatui/Cargo.toml | 2 +- 7 files changed, 14 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 29f2cf7a..9b24ff33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -810,7 +810,7 @@ version = "0.0.0" dependencies = [ "clap", "crossterm", - "rand 0.9.0", + "rand 0.9.1", "ratatui", "termion", "termwiz", @@ -825,7 +825,7 @@ dependencies = [ "indoc", "itertools 0.13.0", "palette", - "rand 0.9.0", + "rand 0.9.1", "rand_chacha 0.9.0", "ratatui", "strum", @@ -1573,7 +1573,7 @@ version = "0.0.0" dependencies = [ "color-eyre", "crossterm", - "rand 0.9.0", + "rand 0.9.1", "ratatui", ] @@ -1887,7 +1887,7 @@ dependencies = [ "color-eyre", "crossterm", "line_drawing", - "rand 0.9.0", + "rand 0.9.1", "ratatui", ] @@ -2454,13 +2454,12 @@ dependencies = [ [[package]] name = "rand" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94" +checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" dependencies = [ "rand_chacha 0.9.0", "rand_core 0.9.3", - "zerocopy", ] [[package]] @@ -2593,7 +2592,7 @@ dependencies = [ "instability", "palette", "pretty_assertions", - "rand 0.9.0", + "rand 0.9.1", "rand_chacha 0.9.0", "ratatui-core", "ratatui-crossterm", @@ -3990,7 +3989,7 @@ version = "0.0.0" dependencies = [ "color-eyre", "crossterm", - "rand 0.9.0", + "rand 0.9.1", "ratatui", ] diff --git a/examples/apps/demo/Cargo.toml b/examples/apps/demo/Cargo.toml index 135b23ef..e7d02675 100644 --- a/examples/apps/demo/Cargo.toml +++ b/examples/apps/demo/Cargo.toml @@ -14,7 +14,7 @@ termwiz = ["ratatui/termwiz", "dep:termwiz"] [dependencies] clap = { version = "4.5.37", features = ["derive"] } crossterm = { workspace = true, optional = true } -rand = "0.9.0" +rand = "0.9.1" ratatui.workspace = true termwiz = { workspace = true, optional = true } diff --git a/examples/apps/demo2/Cargo.toml b/examples/apps/demo2/Cargo.toml index b9f33b1e..33d5d7f7 100644 --- a/examples/apps/demo2/Cargo.toml +++ b/examples/apps/demo2/Cargo.toml @@ -11,7 +11,7 @@ crossterm.workspace = true indoc.workspace = true itertools.workspace = true palette = "0.7.6" -rand = "0.9.0" +rand = "0.9.1" rand_chacha = "0.9.0" ratatui = { workspace = true, features = ["all-widgets"] } strum.workspace = true diff --git a/examples/apps/inline/Cargo.toml b/examples/apps/inline/Cargo.toml index 880e401a..b1b5885e 100644 --- a/examples/apps/inline/Cargo.toml +++ b/examples/apps/inline/Cargo.toml @@ -8,7 +8,7 @@ rust-version.workspace = true [dependencies] color-eyre.workspace = true crossterm.workspace = true -rand = "0.9.0" +rand = "0.9.1" ratatui.workspace = true [lints] diff --git a/examples/apps/mouse-drawing/Cargo.toml b/examples/apps/mouse-drawing/Cargo.toml index 70f72a7b..32311565 100644 --- a/examples/apps/mouse-drawing/Cargo.toml +++ b/examples/apps/mouse-drawing/Cargo.toml @@ -10,7 +10,7 @@ color-eyre.workspace = true crossterm.workspace = true ## a collection of line drawing algorithms (e.g. Bresenham's line algorithm) line_drawing = "1.0.1" -rand = "0.9.0" +rand = "0.9.1" ratatui.workspace = true [lints] diff --git a/examples/apps/weather/Cargo.toml b/examples/apps/weather/Cargo.toml index 72925ad6..eca68699 100644 --- a/examples/apps/weather/Cargo.toml +++ b/examples/apps/weather/Cargo.toml @@ -8,7 +8,7 @@ rust-version.workspace = true [dependencies] color-eyre.workspace = true crossterm.workspace = true -rand = "0.9.0" +rand = "0.9.1" ratatui.workspace = true [lints] diff --git a/ratatui/Cargo.toml b/ratatui/Cargo.toml index 1c6a88bf..078d1857 100644 --- a/ratatui/Cargo.toml +++ b/ratatui/Cargo.toml @@ -124,7 +124,7 @@ fakeit = "1.1" futures = "0.3.30" indoc = "2" pretty_assertions = "1.4.0" -rand = "0.9.0" +rand = "0.9.1" rand_chacha = "0.9.0" rstest = "0.25.0" serde_json.workspace = true