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

Upgrade all Rust dependencies

This includes breaking changes of sqlx 0.7.0
This commit is contained in:
Quentin Gliech
2023-07-17 18:34:10 +02:00
parent 68db56c2a2
commit ba0f7ea62c
121 changed files with 3855 additions and 3447 deletions

View File

@ -7,7 +7,7 @@ license = "Apache-2.0"
[dependencies]
aead = { version = "0.5.2", features = ["std"] }
const-oid = { version = "0.9.3", features = ["std"] }
const-oid = { version = "0.9.4", features = ["std"] }
cookie = { version = "0.17.0", features = ["key-expansion", "private"] }
der = { version = "0.7.7", features = ["std"] }
ecdsa = { version = "0.16.7", features = ["std"] }
@ -20,9 +20,9 @@ pkcs1 = { version = "0.7.5", features = ["std"] }
pkcs8 = { version = "0.10.2", features = ["std", "pkcs5", "encryption"] }
rand = "0.8.5"
rsa = { version = "0.9.2", features = ["std", "pem"] }
sec1 = { version = "0.7.2", features = ["std"] }
sec1 = { version = "0.7.3", features = ["std"] }
spki = { version = "0.7.2", features = ["std"] }
thiserror = "1.0.41"
thiserror = "1.0.43"
generic-array = "0.14.7"
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
base64ct = "1.6.0"
@ -31,5 +31,5 @@ mas-iana = { path = "../iana" }
mas-jose = { path = "../jose" }
[dev-dependencies]
insta = { version = "1.30.0", features = ["yaml"] }
insta = { version = "1.31.0", features = ["yaml"] }
rand_chacha = "0.3.1"