From 42ff62c3c9c716163fb71321bb7e618007b2a5b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Apr 2023 14:56:48 +0000 Subject: [PATCH] build(deps): bump elliptic-curve from 0.13.3 to 0.13.4 Bumps [elliptic-curve](https://github.com/RustCrypto/traits) from 0.13.3 to 0.13.4. - [Release notes](https://github.com/RustCrypto/traits/releases) - [Commits](https://github.com/RustCrypto/traits/compare/elliptic-curve-v0.13.3...elliptic-curve-v0.13.4) --- updated-dependencies: - dependency-name: elliptic-curve dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 ++++++------------ ecdsa/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b70be75..2e0c44e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -172,7 +172,7 @@ dependencies = [ "der", "digest", "elliptic-curve", - "hex-literal 0.4.1", + "hex-literal", "rfc6979", "serdect", "sha2", @@ -195,7 +195,7 @@ version = "2.2.1" dependencies = [ "bincode", "ed25519-dalek", - "hex-literal 0.4.1", + "hex-literal", "pkcs8", "rand_core", "ring-compat", @@ -221,9 +221,9 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cdacd4d6ed3f9b98680b679c0e52a823b8a2c7a97358d508fe247f2180c282" +checksum = "75c71eaa367f2e5d556414a8eea812bc62985c879748d6403edabd9cb03f16e7" dependencies = [ "base16ct", "crypto-bigint", @@ -231,7 +231,7 @@ dependencies = [ "ff", "generic-array", "group", - "hex-literal 0.3.4", + "hex-literal", "pem-rfc7468", "pkcs8", "rand_core", @@ -290,12 +290,6 @@ dependencies = [ "subtle", ] -[[package]] -name = "hex-literal" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" - [[package]] name = "hex-literal" version = "0.4.1" @@ -533,7 +527,7 @@ dependencies = [ name = "rfc6979" version = "0.4.0" dependencies = [ - "hex-literal 0.4.1", + "hex-literal", "hmac", "sha2", "subtle", diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index 5aa82187..bc4316a9 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -16,7 +16,7 @@ edition = "2021" rust-version = "1.65" [dependencies] -elliptic-curve = { version = "0.13.3", default-features = false, features = ["digest", "sec1"] } +elliptic-curve = { version = "0.13.4", default-features = false, features = ["digest", "sec1"] } signature = { version = "2.0, <2.2", default-features = false, features = ["rand_core"] } # optional dependencies