From 3245475a4eba32b6b05433ab013445d39ab3f7cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 30 Apr 2023 09:59:20 +0000 Subject: [PATCH] Update rsa requirement in /lib/srv/desktop/rdp/rdpclient Updates the requirements on [rsa](https://github.com/RustCrypto/RSA) to permit the latest version. - [Release notes](https://github.com/RustCrypto/RSA/releases) - [Changelog](https://github.com/RustCrypto/RSA/blob/master/CHANGELOG.md) - [Commits](https://github.com/RustCrypto/RSA/compare/v0.8.2...v0.9.0) --- updated-dependencies: - dependency-name: rsa dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- lib/srv/desktop/rdp/rdpclient/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/srv/desktop/rdp/rdpclient/Cargo.toml b/lib/srv/desktop/rdp/rdpclient/Cargo.toml index 0513f5b2a8da8..45e0b2e714dff 100644 --- a/lib/srv/desktop/rdp/rdpclient/Cargo.toml +++ b/lib/srv/desktop/rdp/rdpclient/Cargo.toml @@ -19,7 +19,7 @@ num-derive = "0.3.3" num-traits = "0.2.15" rand = { version = "0.8.5", features = ["getrandom"] } rand_chacha = "0.3.1" -rsa = "0.8.2" +rsa = "0.9.0" rdp-rs = { git = "https://github.com/gravitational/rdp-rs", rev = "75eb6a30b83e7152ee6213964b5ac6e783304840" } uuid = { version = "1.3.1", features = ["v4"] } utf16string = "0.2.0"