From af73ec44eea9c94bb09523e61e9daa547f359976 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 18 Apr 2025 11:32:54 +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.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/compare/0.8.5...0.9.0) 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.0 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 fe812e43b..697a0d484 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2366,7 +2366,7 @@ dependencies = [ "ironrdp-svc", "opus", "pico-args", - "rand 0.8.5", + "rand 0.9.0", "sspi", "tokio-rustls", "tracing", @@ -2506,7 +2506,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 3e42081f7..de181e7ca 100644 --- a/crates/ironrdp-connector/Cargo.toml +++ b/crates/ironrdp-connector/Cargo.toml @@ -26,7 +26,7 @@ ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4", features = ["std"] } # arbitrary = { version = "1", features = ["derive"], optional = true } # public sspi = "0.15" # 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 bd596bae1..ce19e8d02 100644 --- a/crates/ironrdp/Cargo.toml +++ b/crates/ironrdp/Cargo.toml @@ -60,7 +60,7 @@ sspi = { version = "0.15", 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]