From 2a0be958c9b992c6585a517d95491bc47d8b3b7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 13:09:08 -0700 Subject: [PATCH] Bump rsa from 0.9.5 to 0.9.6 (#512) Bumps [rsa](https://github.com/RustCrypto/RSA) from 0.9.5 to 0.9.6. - [Changelog](https://github.com/RustCrypto/RSA/blob/master/CHANGELOG.md) - [Commits](https://github.com/RustCrypto/RSA/compare/v0.9.5...v0.9.6) --- updated-dependencies: - dependency-name: rsa dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b5a76f6c..c990b9d2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -660,9 +660,9 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.5" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af6c4b23d99685a1408194da11270ef8e9809aff951cc70ec9b17350b087e474" +checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" dependencies = [ "const-oid", "digest", @@ -801,9 +801,9 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "spki" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" dependencies = [ "base64ct", "der", diff --git a/Cargo.toml b/Cargo.toml index 4de1b3eb..6e57f4a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ p256 = { version = "0.13", default-features = false, features = ["ecdsa"] } p384 = { version = "0.13", default-features = false, features = ["ecdsa"] } serde = { version = "1", features = ["serde_derive"] } rand_core = { version = "0.6", features = ["std"] } -rsa = "0.9.5" +rsa = "0.9.6" signature = { version = "2", features = ["derive"] } subtle = "2" thiserror = "1"