1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-07 17:03:01 +03:00

Bump rsa from 0.7.1 to 0.7.2

Bumps [rsa](https://github.com/RustCrypto/RSA) from 0.7.1 to 0.7.2.
- [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.7.1...v0.7.2)

---
updated-dependencies:
- dependency-name: rsa
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2022-11-15 19:05:01 +00:00
committed by Quentin Gliech
parent fff1dcd211
commit 8dfbb735a2
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@@ -4039,9 +4039,9 @@ dependencies = [
[[package]] [[package]]
name = "rsa" name = "rsa"
version = "0.7.1" version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0ecc3307be66bfb3574577895555bacfb9a37a8d5cd959444b72ff02495c618" checksum = "094052d5470cbcef561cb848a7209968c9f12dfa6d668f4bca048ac5de51099c"
dependencies = [ dependencies = [
"byteorder", "byteorder",
"digest 0.10.5", "digest 0.10.5",

View File

@@ -18,7 +18,7 @@ k256 = { version = "0.11.6", features = ["ecdsa"] }
p256 = { version = "0.11.1", features = ["ecdsa"] } p256 = { version = "0.11.1", features = ["ecdsa"] }
p384 = { version = "0.11.2", features = ["ecdsa"] } p384 = { version = "0.11.2", features = ["ecdsa"] }
rand = "0.8.5" rand = "0.8.5"
rsa = "0.7.1" rsa = "0.7.2"
schemars = "0.8.11" schemars = "0.8.11"
sec1 = "0.3.0" sec1 = "0.3.0"
serde = { version = "1.0.147", features = ["derive"] } serde = { version = "1.0.147", features = ["derive"] }

View File

@@ -20,7 +20,7 @@ pem-rfc7468 = { version = "0.6.0", features = ["std"] }
pkcs1 = { version = "0.4.1", features = ["std"] } pkcs1 = { version = "0.4.1", features = ["std"] }
pkcs8 = { version = "0.9.0", features = ["std", "pkcs5", "encryption"] } pkcs8 = { version = "0.9.0", features = ["std", "pkcs5", "encryption"] }
rand = "0.8.5" rand = "0.8.5"
rsa = { version = "0.7.1", features = ["std", "pem"] } rsa = { version = "0.7.2", features = ["std", "pem"] }
sec1 = { version = "0.3.0", features = ["std"] } sec1 = { version = "0.3.0", features = ["std"] }
spki = { version = "0.6.0", features = ["std"] } spki = { version = "0.6.0", features = ["std"] }
thiserror = "1.0.37" thiserror = "1.0.37"