diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index cddd7d3a6..6cf00e1b5 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -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" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 2d892f08f..527ecf152 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -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" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 409d017d5..d6efae212 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -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" }