From 183efa7ef0ec60405e3a31fef54e2c1092cf4878 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 18:08:27 +0000 Subject: [PATCH] chore(deps): bump rsa from 0.9.2 to 0.9.3 Bumps [rsa](https://github.com/RustCrypto/RSA) from 0.9.2 to 0.9.3. - [Changelog](https://github.com/RustCrypto/RSA/blob/master/CHANGELOG.md) - [Commits](https://github.com/RustCrypto/RSA/compare/v0.9.2...v0.9.3) --- updated-dependencies: - dependency-name: rsa dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 ++---- cms/Cargo.toml | 4 ++-- x509-cert/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6310522c3..8bfbc00cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1191,16 +1191,14 @@ dependencies = [ [[package]] name = "rsa" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8" +checksum = "86ef35bf3e7fe15a53c4ab08a998e42271eab13eb0db224126bc7bc4c4bad96d" dependencies = [ - "byteorder", "const-oid 0.9.5", "digest", "num-bigint-dig", "num-integer", - "num-iter", "num-traits", "pkcs1", "pkcs8", diff --git a/cms/Cargo.toml b/cms/Cargo.toml index 554f2b0c2..2729b3512 100644 --- a/cms/Cargo.toml +++ b/cms/Cargo.toml @@ -23,7 +23,7 @@ const-oid = { version = "0.9.4", features = ["db"] } # TODO: path = "../const-oi aes = { version = "0.8.2", optional = true } cbc = { version = "0.1.2", optional = true } cipher = { version = "0.4.4", features = ["alloc", "block-padding", "rand_core"], optional = true } -rsa = { version = "0.9.2", optional = true } +rsa = { version = "0.9.3", optional = true } sha1 = { version = "0.10", optional = true } sha2 = { version = "0.10", optional = true } sha3 = { version = "0.10", optional = true } @@ -36,7 +36,7 @@ hex-literal = "0.4" pem-rfc7468 = "0.7.0" pkcs5 = { version = "0.7" } rand = { version = "0.8.5" } -rsa = { version = "0.9.2", features = ["sha2"] } +rsa = { version = "0.9.3", features = ["sha2"] } ecdsa = { version = "0.16.8", features = ["digest", "pem"] } p256 = "0.13.0" diff --git a/x509-cert/Cargo.toml b/x509-cert/Cargo.toml index f63a46b65..b90401750 100644 --- a/x509-cert/Cargo.toml +++ b/x509-cert/Cargo.toml @@ -27,7 +27,7 @@ signature = { version = "2.1.0", features = ["rand_core"], optional = true } [dev-dependencies] hex-literal = "0.4" rand = "0.8.5" -rsa = { version = "0.9.2", features = ["sha2"] } +rsa = { version = "0.9.3", features = ["sha2"] } ecdsa = { version = "0.16.8", features = ["digest", "pem"] } p256 = "0.13.0" rstest = "0.18"