Bump some dependencies

This commit is contained in:
Quentin Gliech
2022-01-25 15:04:08 +01:00
parent 4d173291f0
commit 010aa3075c
3 changed files with 6 additions and 6 deletions

View File

@@ -26,9 +26,9 @@ lettre = { version = "0.10.0-rc.4", default-features = false, features = ["serde
rand = "0.8.4"
rsa = { git = "https://github.com/RustCrypto/RSA.git" }
p256 = { version = "0.10.0", features = ["ecdsa", "pem", "pkcs8"] }
p256 = { version = "0.10.1", features = ["ecdsa", "pem", "pkcs8"] }
pkcs8 = { version = "0.8.0", features = ["pem"] }
elliptic-curve = { version = "0.11.6", features = ["pem", "pkcs8"] }
elliptic-curve = { version = "0.11.7", features = ["pem", "pkcs8"] }
indoc = "1.0.3"

View File

@@ -41,7 +41,7 @@ argon2 = { version = "0.3.2", features = ["password-hash"] }
# Crypto, hashing and signing stuff
rsa = { git = "https://github.com/RustCrypto/RSA.git" }
pkcs8 = { version = "0.8.0", features = ["pem"] }
elliptic-curve = { version = "0.11.6", features = ["pem"] }
elliptic-curve = { version = "0.11.7", features = ["pem"] }
chacha20poly1305 = { version = "0.9.0", features = ["std"] }
sha2 = "0.10.1"
crc = "2.1.0"

View File

@@ -13,10 +13,10 @@ chrono = { version = "0.4.19", features = ["serde"] }
crypto-mac = { version = "0.11.1", features = ["std"] }
digest = "0.10.1"
ecdsa = { version = "0.13.4", features = ["sign", "verify", "pem", "pkcs8"] }
elliptic-curve = { version = "0.11.6", features = ["ecdh", "pem"] }
elliptic-curve = { version = "0.11.7", features = ["ecdh", "pem"] }
hmac = "0.12.0"
p256 = { version = "0.10.0", features = ["ecdsa", "pem", "pkcs8"] }
pkcs1 = { version = "0.3.1", features = ["pem", "pkcs8"] }
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.4"
rsa = { git = "https://github.com/RustCrypto/RSA.git" }