From dc6c0c6af6d7fc059cafbaf42cc4b753bfbaf392 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 23:48:06 +0000 Subject: [PATCH] Update secp256k1 requirement from 0.24.3 to 0.28.0 Updates the requirements on [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) to permit the latest version. - [Changelog](https://github.com/rust-bitcoin/rust-secp256k1/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-secp256k1/commits/secp256k1-0.28.0) --- updated-dependencies: - dependency-name: secp256k1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- honey-badger/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/honey-badger/Cargo.toml b/honey-badger/Cargo.toml index cc13368..3ec53e3 100644 --- a/honey-badger/Cargo.toml +++ b/honey-badger/Cargo.toml @@ -8,7 +8,7 @@ base64 = "0.21.0" bdk = { version = "0.28.0", features = ["keys-bip39"] } log = "0.4.17" rand = "0.8.5" -secp256k1 = { version = "0.24.3", features = ["global-context"] } +secp256k1 = { version = "0.28.0", features = ["global-context"] } serde_json = "1.0" graphql = { path = "../graphql" }