Merge rust-bitcoin/rust-bitcoin#2572: Upgrade bitcoinconsenus

be329c2d7b Upgrade bitcoinconsenus (Tobin C. Harding)

Pull request description:

  Upgrade to the most recent `bitcoinconsensus` version that excludes Taproot verification i.e., one version before latest.

ACKs for top commit:
  sanket1729:
    ACK be329c2d7b
  apoelstra:
    ACK be329c2d7b

Tree-SHA512: 428e8e5010719a46401be58c2d4fe88662991766afe97c879147599c1bd79c85ced09dcf5ef37f3cf3f49d79c53b390881969eac93c1475dad751cc760ffd64e
This commit is contained in:
Andrew Poelstra 2024-03-12 14:50:22 +00:00
commit 6f6cc00eb7
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
3 changed files with 5 additions and 7 deletions

View File

@ -114,12 +114,11 @@ dependencies = [
[[package]]
name = "bitcoinconsensus"
version = "0.20.2-0.5.0"
version = "0.105.0+25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54505558b77e0aa21b2491a7b39cbae9db22ac8b1bc543ef4600edb762306f9c"
checksum = "f260ac8fb2c621329013fc0ed371c940fcc512552dcbcb9095ed0179098c9e18"
dependencies = [
"cc",
"libc",
]
[[package]]

View File

@ -113,12 +113,11 @@ dependencies = [
[[package]]
name = "bitcoinconsensus"
version = "0.20.2-0.5.0"
version = "0.105.0+25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54505558b77e0aa21b2491a7b39cbae9db22ac8b1bc543ef4600edb762306f9c"
checksum = "f260ac8fb2c621329013fc0ed371c940fcc512552dcbcb9095ed0179098c9e18"
dependencies = [
"cc",
"libc",
]
[[package]]

View File

@ -41,7 +41,7 @@ units = { package = "bitcoin-units", version = "0.1.0", default-features = false
base64 = { version = "0.21.3", optional = true }
ordered = { version = "0.2.0", optional = true }
# Only use this feature for no-std builds, otherwise use bitcoinconsensus-std.
bitcoinconsensus = { version = "0.20.2-0.5.0", default-features = false, optional = true }
bitcoinconsensus = { version = "0.105.0+25.1", default-features = false, optional = true }
# Do NOT use this as a feature! Use the `serde` feature instead.
actual-serde = { package = "serde", version = "1.0.103", default-features = false, features = [ "derive", "alloc" ], optional = true }