From 98f753d4327f0cd5e73d55818b4bd5374f7449f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Jul 2025 00:03:34 +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 | 4 ++-- crates/ironrdp-connector/Cargo.toml | 2 +- crates/ironrdp/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 207d6cb36..fb77439aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2359,7 +2359,7 @@ dependencies = [ "ironrdp-svc", "opus", "pico-args", - "rand 0.8.5", + "rand 0.9.1", "sspi", "tokio-rustls", "tracing", @@ -2511,7 +2511,7 @@ dependencies = [ "picky", "picky-asn1-der", "picky-asn1-x509", - "rand_core 0.6.4", + "rand_core 0.9.3", "sspi", "tracing", "url", diff --git a/crates/ironrdp-connector/Cargo.toml b/crates/ironrdp-connector/Cargo.toml index b74ee82b3..b5a0f4276 100644 --- a/crates/ironrdp-connector/Cargo.toml +++ b/crates/ironrdp-connector/Cargo.toml @@ -26,7 +26,7 @@ ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5", features = ["std"] } # arbitrary = { version = "1", features = ["derive"], optional = true } # public sspi = "0.16" # public url = "2.5" # public -rand_core = { version = "0.6", features = ["std"] } # TODO: dependency injection? +rand_core = { version = "0.9", features = ["std"] } # TODO: dependency injection? tracing = { version = "0.1", features = ["log"] } picky-asn1-der = "0.5" picky-asn1-x509 = "0.14" diff --git a/crates/ironrdp/Cargo.toml b/crates/ironrdp/Cargo.toml index cdfcb1178..e44d44e64 100644 --- a/crates/ironrdp/Cargo.toml +++ b/crates/ironrdp/Cargo.toml @@ -63,7 +63,7 @@ sspi = { version = "0.16", features = ["network_client"] } tracing = { version = "0.1", features = ["log"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] } tokio-rustls = "0.26" -rand = "0.8" +rand = "0.9" opus = "0.3" [package.metadata.docs.rs]