From cdf3f9c2caf5aa03067ce2a754c230096c10b709 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 21:03:57 +0000 Subject: [PATCH] Bump rand from 0.7.3 to 0.8.6 Bumps [rand](https://github.com/rust-random/rand) from 0.7.3 to 0.8.6. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/0.8.6/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.7.3...0.8.6) --- updated-dependencies: - dependency-name: rand dependency-version: 0.8.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 34 +++++++++++++++++++++++++++++++++- src/pps/cli/Cargo.toml | 2 +- 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b06636a9..b3ac281a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 4 + [[package]] name = "Inflector" version = "0.11.4" @@ -2594,7 +2596,7 @@ dependencies = [ "clap", "pps-api", "pps-server", - "rand 0.7.3", + "rand 0.8.6", "rpc", "serde", "serde_json", @@ -2810,6 +2812,17 @@ dependencies = [ "rand_hc 0.2.0", ] +[[package]] +name = "rand" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" +dependencies = [ + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + [[package]] name = "rand_chacha" version = "0.1.1" @@ -2830,6 +2843,16 @@ dependencies = [ "rand_core 0.5.1", ] +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + [[package]] name = "rand_core" version = "0.3.1" @@ -2854,6 +2877,15 @@ dependencies = [ "getrandom 0.1.15", ] +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.0", +] + [[package]] name = "rand_hc" version = "0.1.0" diff --git a/src/pps/cli/Cargo.toml b/src/pps/cli/Cargo.toml index 54e7966e..fee08e46 100644 --- a/src/pps/cli/Cargo.toml +++ b/src/pps/cli/Cargo.toml @@ -12,7 +12,7 @@ tokio = { version = "0.2.22", features = ["process", "macros", "rt-threaded", "f clap = "3.0.0-beta.2" pps-api = { path = "../api" } pps-server = { path = "../server" } -rand = "0.7.3" +rand = "0.8.6" util = { path = "../../util" } tracing = "0.1.21" tracing-futures = "0.2.4"