1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

Bump Rust dependencies

This commit is contained in:
Quentin Gliech
2023-05-25 17:46:44 +02:00
parent d2d68e9a27
commit 1993f4cfca
28 changed files with 664 additions and 739 deletions

View File

@ -9,9 +9,9 @@ license = "Apache-2.0"
aead = { version = "0.5.2", features = ["std"] }
const-oid = { version = "0.9.2", features = ["std"] }
cookie = { version = "0.17.0", features = ["key-expansion", "private"] }
der = { version = "0.7.5", features = ["std"] }
ecdsa = { version = "0.16.6", features = ["std"] }
elliptic-curve = { version = "0.13.4", features = ["std", "pem", "sec1"] }
der = { version = "0.7.6", features = ["std"] }
ecdsa = { version = "0.16.7", features = ["std"] }
elliptic-curve = { version = "0.13.5", features = ["std", "pem", "sec1"] }
k256 = { version = "0.13.1", features = ["std"] }
p256 = { version = "0.13.2", features = ["std"] }
p384 = { version = "0.13.0", features = ["std"] }
@ -19,9 +19,9 @@ pem-rfc7468 = { version = "0.7.0", features = ["std"] }
pkcs1 = { version = "0.7.5", features = ["std"] }
pkcs8 = { version = "0.10.2", features = ["std", "pkcs5", "encryption"] }
rand = "0.8.5"
rsa = { version = "0.9.0-pre.1", features = ["std", "pem"] }
rsa = { version = "0.9.2", features = ["std", "pem"] }
sec1 = { version = "0.7.2", features = ["std"] }
spki = { version = "0.7.1", features = ["std"] }
spki = { version = "0.7.2", features = ["std"] }
thiserror = "1.0.40"
generic-array = "0.14.7"
chacha20poly1305 = { version = "0.10.1", features = ["std"] }