From 83d30f17220a1b9db8ad1744dec9111cd451a3bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jun 2022 19:38:03 +0000 Subject: [PATCH] Bump p256 from 0.11.0 to 0.11.1 Bumps [p256](https://github.com/RustCrypto/elliptic-curves) from 0.11.0 to 0.11.1. - [Release notes](https://github.com/RustCrypto/elliptic-curves/releases) - [Commits](https://github.com/RustCrypto/elliptic-curves/compare/p256/v0.11.0...p256/v0.11.1) --- updated-dependencies: - dependency-name: p256 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ crates/config/Cargo.toml | 2 +- crates/jose/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6d517c5..c0659cfa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1110,9 +1110,9 @@ dependencies = [ [[package]] name = "crypto-bigint" -version = "0.4.3" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78a4e0fb04deabeb711eb20bd1179f1524c06f7e6975ebccc495f678a635887b" +checksum = "ac961631d66e80ac7ac2ac01320628ce214ad2b5ef0a88ceb86eae459069e2b4" dependencies = [ "generic-array 0.14.5", "rand_core", @@ -1353,9 +1353,9 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdd8c93ccd534d6a9790f4455cd71e7adb53a12e9af7dd54d1e258473f100cea" +checksum = "4f6664c6a37892ed55da8dda26a99e6ccc783f0c72fa3c2eeaa00ed30d8f4d9a" dependencies = [ "base16ct", "crypto-bigint", @@ -3029,9 +3029,9 @@ checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa" [[package]] name = "p256" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3e7336b74eb43c009656d53a65648b5ff3941b8421207e6a23f42d5aa3a89f3" +checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" dependencies = [ "ecdsa", "elliptic-curve", diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 51b94e4d..b0cfe5fd 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -26,7 +26,7 @@ lettre = { version = "0.10.0-rc.7", default-features = false, features = ["serde rand = "0.8.5" rsa = { git = "https://github.com/sandhose/RSA.git", branch = "bump-pkcs" } -p256 = { version = "0.11.0", features = ["ecdsa", "pem", "pkcs8"] } +p256 = { version = "0.11.1", features = ["ecdsa", "pem", "pkcs8"] } pkcs8 = { version = "0.9.0", features = ["pem"] } chacha20poly1305 = { version = "0.10.0-pre", features = ["std"] } cookie = { version = "0.16.0", features = ["private", "key-expansion"] } diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 3a3c8379..dac694e5 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -17,7 +17,7 @@ elliptic-curve = { version = "0.12.0", features = ["ecdh", "pem"] } futures-util = "0.3.21" hmac = "0.12.1" http = "0.2.8" -p256 = { version = "0.11.0", features = ["ecdsa", "pem", "pkcs8"] } +p256 = { version = "0.11.1", features = ["ecdsa", "pem", "pkcs8"] } pkcs1 = { version = "0.4.0", features = ["pem", "pkcs8"] } pkcs8 = { version = "0.9.0", features = ["pem", "std"] } rand = "0.8.5"