From 54f221d5d0b3cb8e4a7d576e5ceef3a469e21f12 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Jul 2025 11:14:48 +0000 Subject: [PATCH] build(deps): bump the crypto group across 1 directory with 2 updates Bumps the crypto group with 2 updates in the / directory: [rand](https://github.com/rust-random/rand) and [rand_core](https://github.com/rust-random/rand). Updates `rand` from 0.8.5 to 0.9.1 - [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...rand_core-0.9.1) Updates `rand_core` from 0.6.4 to 0.9.3 - [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 dependency-version: 0.9.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: crypto - dependency-name: rand_core dependency-version: 0.9.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: crypto ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- crates/winscard/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 99562eb8..96733fb1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -639,7 +639,7 @@ dependencies = [ "picky-asn1-der", "picky-asn1-x509", "picky-krb", - "rand 0.8.5", + "rand 0.9.1", "regex", "sha1 0.10.6", "sha1 0.11.0-rc.0", @@ -2876,7 +2876,7 @@ dependencies = [ "picky-krb", "portpicker", "proptest", - "rand 0.8.5", + "rand 0.9.1", "reqwest", "rsa", "rustls", @@ -3959,8 +3959,8 @@ dependencies = [ "picky-asn1-der", "picky-asn1-x509", "proptest", - "rand 0.8.5", - "rand_core 0.6.4", + "rand 0.9.1", + "rand_core 0.9.3", "rsa", "sha1 0.10.6", "time", diff --git a/Cargo.toml b/Cargo.toml index 3c1819cf..711b75c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] } uuid = { version = "1.16", default-features = false } tracing = { version = "0.1", default-features = false } bitflags = "2.9" -rand = "0.8" +rand = "0.9" cfg-if = "1" time = { version = "0.3", default-features = false } sha1 = { version = "0.10", default-features = false } diff --git a/crates/winscard/Cargo.toml b/crates/winscard/Cargo.toml index 20a66719..9f9c2627 100644 --- a/crates/winscard/Cargo.toml +++ b/crates/winscard/Cargo.toml @@ -28,7 +28,7 @@ time = { workspace = true, features = [ uuid = { workspace = true, features = ["v4"] } flate2 = { version = "1.1", features = ["zlib", "rust_backend"], default-features = false } rsa = { workspace = true, features = ["hazmat", "sha1"] } -rand_core = "0.6" +rand_core = "0.9" sha1.workspace = true base64 = { workspace = true , optional = true } picky-asn1-der = { workspace = true, optional = true }