Skip to content

Commit

Permalink
Merge rust-bitcoin/rust-bitcoin#1110: Upgrade to secp v0.24.0
Browse files Browse the repository at this point in the history
df73576 Upgrade to secp v0.24.0 (Tobin C. Harding)

Pull request description:

  We just released a new version of `rust-secp256k1`, lets use it.

  This also fixes a bug where we upgraded our `bitcoin_hashes` dependency
  before secp had done theirs.

ACKs for top commit:
  sanket1729:
    utACK df73576
  apoelstra:
    ACK df73576

Tree-SHA512: 614eb096203753a6581e444aa11d41c7060342afd7ad103f6118c64bccf604850819ec2852730d1ac83fdea193770fe7600ea70c082a19afaef7ad3e8016d0e4
  • Loading branch information
apoelstra committed Jul 20, 2022
2 parents c44f33f + 6ba2db2 commit 66c2078
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -35,7 +35,7 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
bech32 = { version = "0.8.1", default-features = false }
bitcoin_hashes = { version = "0.11.0", default-features = false }
secp256k1 = { version = "0.23.0", default-features = false }
secp256k1 = { version = "0.24.0", default-features = false }
core2 = { version = "0.3.0", optional = true, default-features = false }

base64 = { version = "0.13.0", optional = true }
Expand All @@ -47,7 +47,7 @@ hashbrown = { version = "0.8", optional = true }
[dev-dependencies]
serde_json = "<1.0.45"
serde_test = "1"
secp256k1 = { version = "0.23.0", features = [ "recovery", "rand-std" ] }
secp256k1 = { version = "0.24.0", features = [ "recovery", "rand-std" ] }
bincode = "1.3.1"

[[example]]
Expand Down

0 comments on commit 66c2078

Please sign in to comment.