1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-28 11:02:02 +03:00

Bump rsa from 0.6.0-pre to 0.6.0

Bumps [rsa](https://github.com/RustCrypto/RSA) from 0.6.0-pre to 0.6.0.
- [Release notes](https://github.com/RustCrypto/RSA/releases)
- [Commits](https://github.com/RustCrypto/RSA/compare/v0.6.0-pre...v0.6.0)

---
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-04-08 19:49:15 +00:00
committed by Quentin Gliech
parent f4ff7c296c
commit 8335eef099
4 changed files with 7 additions and 6 deletions

View File

@ -25,7 +25,7 @@ sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] }
lettre = { version = "0.10.0-rc.5", default-features = false, features = ["serde", "builder"] }
rand = "0.8.5"
rsa = "0.6.0-pre"
rsa = "0.6.0"
p256 = { version = "0.10.1", features = ["ecdsa", "pem", "pkcs8"] }
pkcs8 = { version = "0.8.0", features = ["pem"] }
chacha20poly1305 = { version = "0.10.0-pre", features = ["std"] }

View File

@ -42,7 +42,7 @@ serde_urlencoded = "0.7.1"
argon2 = { version = "0.4.0", features = ["password-hash"] }
# Crypto, hashing and signing stuff
rsa = "0.6.0-pre"
rsa = "0.6.0"
pkcs8 = { version = "0.8.0", features = ["pem"] }
elliptic-curve = { version = "0.11.12", features = ["pem"] }
sha2 = "0.10.2"

View File

@ -21,7 +21,7 @@ p256 = { version = "0.10.1", features = ["ecdsa", "pem", "pkcs8"] }
pkcs1 = { version = "0.3.3", features = ["pem", "pkcs8"] }
pkcs8 = { version = "0.8.0", features = ["pem"] }
rand = "0.8.5"
rsa = "0.6.0-pre"
rsa = "0.6.0"
schemars = "0.8.8"
sec1 = "0.2.1"
serde = { version = "1.0.136", features = ["derive"] }