From acbf5d5831ac70182eca697a854f25c593608e81 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 14:07:53 +0400 Subject: [PATCH] Bump secp256k1 from 0.28.2 to 0.29.0 (#4495) Bumps [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) from 0.28.2 to 0.29.0. - [Changelog](https://github.com/rust-bitcoin/rust-secp256k1/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-secp256k1/compare/secp256k1-0.28.2...secp256k1-0.29.0) --- updated-dependencies: - dependency-name: secp256k1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- crypto/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 712cf42ecf6..54d744746bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5127,9 +5127,9 @@ dependencies = [ [[package]] name = "secp256k1" -version = "0.28.2" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10" +checksum = "0e0cc0f1cf93f4969faf3ea1c7d8a9faed25918d96affa959720823dfe86d4f3" dependencies = [ "rand", "secp256k1-sys", @@ -5138,9 +5138,9 @@ dependencies = [ [[package]] name = "secp256k1-sys" -version = "0.9.2" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5d1746aae42c19d583c3c1a8c646bfad910498e2051c551a7f2e3c0c9fbb7eb" +checksum = "1433bd67156263443f14d603720b082dd3121779323fce20cba2aa07b874bc1b" dependencies = [ "cc", ] diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index a86b2c439a3..2fb9a6bf485 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -91,6 +91,6 @@ serde_json = { workspace = true, features = ["std"] } # these crypto libraries are not used to implement actual crypto algorithms # but to test some of the primitives against them amcl = { version = "0.2.0", default-features = false, features = ["secp256k1"] } -secp256k1 = { version = "0.28.2", features = ["rand", "serde"] } +secp256k1 = { version = "0.29.0", features = ["rand", "serde"] } libsodium-sys-stable = "1.20.5" openssl = { version = "0.10.64", features = ["vendored"] }