From 0d1f24fd974e625ffa2a024e95dde855489ed076 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 15:58:40 +0000 Subject: [PATCH] build(deps): bump p384 from 0.13.0 to 0.13.1 Bumps [p384](https://github.com/RustCrypto/elliptic-curves) from 0.13.0 to 0.13.1. - [Commits](https://github.com/RustCrypto/elliptic-curves/compare/p384/v0.13.0...sm2/v0.13.1) --- updated-dependencies: - dependency-name: p384 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- 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 }