From 02d9b428eb1c4685aa818cb32ef50304088dfa3e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 09:47:40 -0700 Subject: [PATCH] build(deps): bump p384 from 0.13.0 to 0.13.1 (#107) --- Cargo.lock | 4 ++-- dhkem/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c7d0bc2..d3a490b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -974,9 +974,9 @@ dependencies = [ [[package]] name = "p384" -version = "0.13.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209" +checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" dependencies = [ "elliptic-curve", "primeorder", diff --git a/dhkem/Cargo.toml b/dhkem/Cargo.toml index eb33af0..ce8fe40 100644 --- a/dhkem/Cargo.toml +++ b/dhkem/Cargo.toml @@ -21,7 +21,7 @@ rand_core = "0.6.4" elliptic-curve = { version = "0.13.8", optional = true, default-features = false } k256 = { version = "0.13.4", optional = true, default-features = false, features = ["arithmetic"] } p256 = { version = "0.13.2", optional = true, default-features = false, features = ["arithmetic"] } -p384 = { version = "0.13.0", optional = true, default-features = false, features = ["arithmetic"] } +p384 = { version = "0.13.1", optional = true, default-features = false, features = ["arithmetic"] } p521 = { version = "0.13.3", optional = true, default-features = false, features = ["arithmetic"] } x25519 = { version = "2.0.1", package = "x25519-dalek", optional = true, default-features = false } zeroize = { version = "1.8.1", optional = true, default-features = false }