build(deps): bump rand_chacha from 0.9.0 to 0.10.0

Bumps [rand_chacha](https://github.com/rust-random/rand) from 0.9.0 to 0.10.0.
- [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/commits)

---
updated-dependencies:
- dependency-name: rand_chacha
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2026-02-02 18:23:42 +00:00
committed by GitHub
parent b0a7703c00
commit 0819475bd8
2 changed files with 19 additions and 3 deletions

20
Cargo.lock generated
View File

@@ -867,7 +867,7 @@ dependencies = [
"itertools 0.14.0",
"palette",
"rand 0.9.2",
"rand_chacha 0.9.0",
"rand_chacha 0.10.0",
"ratatui",
"strum",
"time",
@@ -2693,6 +2693,16 @@ dependencies = [
"rand_core 0.9.3",
]
[[package]]
name = "rand_chacha"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb"
dependencies = [
"ppv-lite86",
"rand_core 0.10.0",
]
[[package]]
name = "rand_core"
version = "0.6.4"
@@ -2711,6 +2721,12 @@ dependencies = [
"getrandom 0.3.3",
]
[[package]]
name = "rand_core"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
[[package]]
name = "ratatui"
version = "0.30.0"
@@ -2726,7 +2742,7 @@ dependencies = [
"palette",
"pretty_assertions",
"rand 0.9.2",
"rand_chacha 0.9.0",
"rand_chacha 0.10.0",
"ratatui-core",
"ratatui-crossterm",
"ratatui-macros",

View File

@@ -49,7 +49,7 @@ octocrab = "0.49"
palette = "0.7"
pretty_assertions = "1"
rand = "0.9"
rand_chacha = "0.9"
rand_chacha = "0.10"
ratatui = { path = "ratatui", version = "0.30.0" }
ratatui-core = { path = "ratatui-core", version = "0.1.0" }
ratatui-crossterm = { path = "ratatui-crossterm", version = "0.1.0" }