From c8ff196fc72c1ecf614778e0087d21be11701c30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 May 2025 05:40:02 +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), [rand_core](https://github.com/rust-random/rand) and [der](https://github.com/RustCrypto/formats). 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) Updates `der` from 0.7.9 to 0.7.10 - [Commits](https://github.com/RustCrypto/formats/compare/der/v0.7.9...der/v0.7.10) --- 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 - dependency-name: der dependency-version: 0.7.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: crypto ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/ironrdp-connector/Cargo.toml | 2 +- crates/ironrdp/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f8819b5fc..b2620f1c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1164,9 +1164,9 @@ checksum = "575f75dfd25738df5b91b8e43e14d44bda14637a58fae779fd2b064f8bf3e010" [[package]] name = "der" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ "const-oid", "der_derive", @@ -2386,7 +2386,7 @@ dependencies = [ "ironrdp-svc", "opus", "pico-args", - "rand 0.8.5", + "rand 0.9.0", "sspi", "tokio-rustls", "tracing", @@ -2527,7 +2527,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 3abbcb7d6..3656e3046 100644 --- a/crates/ironrdp/Cargo.toml +++ b/crates/ironrdp/Cargo.toml @@ -63,7 +63,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]