From 4483b0eca5f55840c8ea73ecb0ef089999fc07b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 15:25:41 +0000 Subject: [PATCH] build(deps): bump k256 from 0.13.3 to 0.13.4 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] --- Cargo.lock | 4 ++-- crates/jose/Cargo.toml | 2 +- crates/keystore/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc062b48b..b939a2405 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2972,9 +2972,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", "ecdsa", diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 74b9b313b..43fc777c5 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -19,7 +19,7 @@ ecdsa = { version = "0.16.9", features = ["signing", "verifying"] } elliptic-curve = "0.13.8" generic-array = "0.14.7" hmac = "0.12.1" -k256 = { version = "0.13.3", features = ["ecdsa"] } +k256 = { version = "0.13.4", features = ["ecdsa"] } p256 = { version = "0.13.2", features = ["ecdsa"] } p384 = { version = "0.13.0", features = ["ecdsa"] } rand.workspace = true diff --git a/crates/keystore/Cargo.toml b/crates/keystore/Cargo.toml index bc6c0b8db..a64bb6853 100644 --- a/crates/keystore/Cargo.toml +++ b/crates/keystore/Cargo.toml @@ -17,7 +17,7 @@ const-oid = { version = "0.9.6", features = ["std"] } der = { version = "0.7.9", features = ["std"] } ecdsa = { version = "0.16.9", features = ["std"] } elliptic-curve = { version = "0.13.8", features = ["std", "pem", "sec1"] } -k256 = { version = "0.13.3", features = ["std"] } +k256 = { version = "0.13.4", features = ["std"] } p256 = { version = "0.13.2", features = ["std"] } p384 = { version = "0.13.0", features = ["std"] } pem-rfc7468 = { version = "0.7.0", features = ["std"] }