From 3eed5675918c1e0ce50513679129db285a58b446 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 19:35:01 +0000 Subject: [PATCH] chore(deps): bump secp256k1 from 0.27.0 to 0.29.0 Bumps [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) from 0.27.0 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.27.0...secp256k1-0.29.0) --- updated-dependencies: - dependency-name: secp256k1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 3 +-- integrationtests/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c0435f9e..6a905b84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1721,7 +1721,7 @@ dependencies = [ "moksha-wallet", "rand", "reqwest 0.12.4", - "secp256k1 0.27.0", + "secp256k1 0.29.0", "serde", "tempfile", "testcontainers", @@ -3132,7 +3132,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25996b82292a7a57ed3508f052cfff8640d38d32018784acd714758b43da9c8f" dependencies = [ "bitcoin_hashes 0.12.0", - "rand", "secp256k1-sys 0.8.1", "serde", ] diff --git a/integrationtests/Cargo.toml b/integrationtests/Cargo.toml index cf12d217..7132f2a3 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -20,7 +20,7 @@ anyhow = { workspace = true, features = ["backtrace"] } serde = { workspace = true, features = ["derive"] } lightning-invoice = "0.30.0" bitcoin = { version = "0.30.2", default-features = false } -secp256k1 = { version = "0.27.0", default-features = false, features = ["recovery", "alloc", "rand"] } +secp256k1 = { version = "0.29.0", default-features = false, features = ["recovery", "alloc", "rand"] } testcontainers = { workspace = true } testcontainers-modules = { workspace = true, features = ["postgres"] } bitcoincore-rpc = { workspace = true }