From f335a419ff406f6aba3afbe86e89c4a4d4c30a82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 10:14:17 -0600 Subject: [PATCH] build(deps): bump k256 from 0.13.3 to 0.13.4 (#64) Bumps [k256](https://github.com/RustCrypto/elliptic-curves) from 0.13.3 to 0.13.4. - [Commits](https://github.com/RustCrypto/elliptic-curves/compare/k256/v0.13.3...k256/v0.13.4) --- updated-dependencies: - dependency-name: k256 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- dhkem/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index af7301d..8ecd652 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -454,9 +454,9 @@ dependencies = [ [[package]] name = "k256" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" +checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" dependencies = [ "cfg-if", "elliptic-curve", diff --git a/dhkem/Cargo.toml b/dhkem/Cargo.toml index fb4bd99..eb33af0 100644 --- a/dhkem/Cargo.toml +++ b/dhkem/Cargo.toml @@ -19,7 +19,7 @@ rand_core = "0.6.4" # optional dependencies elliptic-curve = { version = "0.13.8", optional = true, default-features = false } -k256 = { version = "0.13.3", optional = true, default-features = false, features = ["arithmetic"] } +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"] } p521 = { version = "0.13.3", optional = true, default-features = false, features = ["arithmetic"] }