From 02db8070026fd96e002cb04d8e4f8e423a7b4829 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Jul 2025 12:55:54 +0000 Subject: [PATCH] build(deps): bump the crypto group across 1 directory with 3 updates Bumps the crypto group with 3 updates in the / directory: [rand](https://github.com/rust-random/rand), [rustls](https://github.com/rustls/rustls) 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 `rustls` from 0.23.28 to 0.23.29 - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustls/rustls/compare/v/0.23.28...v/0.23.29) 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: rustls dependency-version: 0.23.29 dependency-type: direct:production update-type: version-update:semver-patch 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 | 16 ++++++++-------- Cargo.toml | 2 +- crates/winscard/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3b08232e..782115c8 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", @@ -2553,9 +2553,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.28" +version = "0.23.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643" +checksum = "2491382039b29b9b11ff08b76ff6c97cf287671dbb74f0be44bda389fffe9bd1" dependencies = [ "aws-lc-rs", "log", @@ -2591,9 +2591,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.103.3" +version = "0.103.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435" +checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc" dependencies = [ "aws-lc-rs", "ring", @@ -2887,7 +2887,7 @@ dependencies = [ "picky-krb", "portpicker", "proptest", - "rand 0.8.5", + "rand 0.9.1", "reqwest", "rsa", "rustls", @@ -3972,8 +3972,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 f4455bba..763d9f30 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 }