From 45afd3532dc3b919579c1a10dd2b874bc407dea1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 14:21:05 +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 [picky](https://github.com/Devolutions/picky-rs). 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 `picky` from 7.0.0-rc.15 to 7.0.0-rc.16 - [Changelog](https://github.com/Devolutions/picky-rs/blob/master/release.toml) - [Commits](https://github.com/Devolutions/picky-rs/compare/picky-v7.0.0-rc.15...picky-v7.0.0-rc.16) --- 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: picky dependency-version: 7.0.0-rc.16 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: crypto ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- devolutions-agent/Cargo.toml | 2 +- devolutions-gateway/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 726b8a98b..1c1bb8b5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1150,7 +1150,7 @@ dependencies = [ "ironrdp", "notify-debouncer-mini", "parking_lot", - "rand 0.8.5", + "rand 0.9.1", "reqwest", "rustls-pemfile 2.2.0", "serde", @@ -4179,9 +4179,9 @@ dependencies = [ [[package]] name = "picky" -version = "7.0.0-rc.15" +version = "7.0.0-rc.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83be360ca0cc8659abfbda932098e606fe52fa129508b92f0ce2998c00679170" +checksum = "33807ce79d4b14a8918e968a8606e5142ddc6aec933acef79de0bd769cae5fb1" dependencies = [ "aes", "aes-gcm", diff --git a/devolutions-agent/Cargo.toml b/devolutions-agent/Cargo.toml index 42e807e47..992627ebf 100644 --- a/devolutions-agent/Cargo.toml +++ b/devolutions-agent/Cargo.toml @@ -22,7 +22,7 @@ devolutions-gateway-task = { path = "../crates/devolutions-gateway-task" } devolutions-log = { path = "../crates/devolutions-log" } futures = "0.3" parking_lot = "0.12" -rand = "0.8" # FIXME(@CBenoit): maybe we don’t need this crate +rand = "0.9" # FIXME(@CBenoit): maybe we don’t need this crate rustls-pemfile = "2.2" # FIXME(@CBenoit): maybe we don’t need this crate serde_json = "1" serde = { version = "1", features = ["derive"] } diff --git a/devolutions-gateway/Cargo.toml b/devolutions-gateway/Cargo.toml index 3a9c9e357..853846143 100644 --- a/devolutions-gateway/Cargo.toml +++ b/devolutions-gateway/Cargo.toml @@ -65,7 +65,7 @@ dunce = "1.0" bitflags = "2.9" # Security, crypto… -picky = { version = "7.0.0-rc.15", default-features = false, features = ["jose", "x509", "pkcs12", "time_conversion"] } +picky = { version = "7.0.0-rc.17", default-features = false, features = ["jose", "x509", "pkcs12", "time_conversion"] } zeroize = { version = "1.8", features = ["derive"] } multibase = "0.9" argon2 = { version = "0.5", features = ["std"] }