From 6aa640ff8d80e06e5cfd28a28624fb001b436974 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Sat, 18 Mar 2023 22:00:02 +0000 Subject: [PATCH] update rust-secp to 0.27.0 Also remove the spurious dev-dependency copy of rust-secp, which should've been updated to remove the "recovery" feature in https://www.github.com/rust-bitcoin/rust-bitcoin/pull/545 and then been removed entirely in https://www.github.com/rust-bitcoin/rust-bitcoin/pull/1387 --- bitcoin/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index 6f1cee93..3ba13538 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -37,7 +37,7 @@ rustdoc-args = ["--cfg", "docsrs"] bitcoin-internals = { path = "../internals", package = "bitcoin-private", version = "0.1.0" } bech32 = { version = "0.9.0", default-features = false } bitcoin_hashes = { version = "0.12.0", default-features = false } -secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", tag = "2023-03-05--fix-hashes", default-features = false, features = ["bitcoin_hashes"] } +secp256k1 = { version = "0.27.0", default-features = false, features = ["bitcoin_hashes"] } hex_lit = "0.1.1" base64 = { version = "0.13.0", optional = true } @@ -50,7 +50,6 @@ actual-serde = { package = "serde", version = "1.0.103", default-features = fals serde_json = "1.0.0" serde_test = "1.0.19" serde_derive = "1.0.103" -secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", tag = "2023-03-05--fix-hashes", features = ["recovery"] } bincode = "1.3.1" [target.'cfg(mutate)'.dev-dependencies]