From b353d341bbcfc032ff4d5d20f694c6cee290a7f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 08:27:36 +0100 Subject: [PATCH] Update rsa requirement from 0.8.2 to 0.9.6 in /az-cvm-vtpm (#44) Updates the requirements on [rsa](https://github.com/RustCrypto/RSA) to permit the latest version. - [Changelog](https://github.com/RustCrypto/RSA/blob/master/CHANGELOG.md) - [Commits](https://github.com/RustCrypto/RSA/compare/v0.8.2...v0.9.6) --- updated-dependencies: - dependency-name: rsa dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- az-cvm-vtpm/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/az-cvm-vtpm/Cargo.toml b/az-cvm-vtpm/Cargo.toml index 4f8a839..5405ed8 100644 --- a/az-cvm-vtpm/Cargo.toml +++ b/az-cvm-vtpm/Cargo.toml @@ -23,7 +23,7 @@ bincode.workspace = true jsonwebkey = { version = "0.3.5", features = ["pkcs-convert"] } memoffset = "0.9.0" openssl = { workspace = true, optional = true } -rsa = { version = "0.8.2", features = ["pkcs5", "sha2"] } +rsa = { version = "0.9.6", features = ["pkcs5", "sha2"] } serde.workspace = true serde_json.workspace = true serde-big-array = "0.5.1"