Skip to content

Commit f7ddd33

Browse files
Update secp256k1 requirement from 0.20.2 to 0.25.0
Updates the requirements on [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) to permit the latest version. - [Release notes](https://github.com/rust-bitcoin/rust-secp256k1/releases) - [Changelog](https://github.com/rust-bitcoin/rust-secp256k1/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-secp256k1/commits/secp256k1-0.25.0) --- updated-dependencies: - dependency-name: secp256k1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fcfd683 commit f7ddd33

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lightning-invoice/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ std = ["bitcoin_hashes/std", "num-traits/std", "lightning/std", "bech32/std"]
2020
[dependencies]
2121
bech32 = { version = "0.8", default-features = false }
2222
lightning = { version = "0.0.105", path = "../lightning", default-features = false }
23-
secp256k1 = { version = "0.20", default-features = false, features = ["recovery", "alloc"] }
23+
secp256k1 = { version = "0.25", default-features = false, features = ["recovery", "alloc"] }
2424
num-traits = { version = "0.2.8", default-features = false }
2525
bitcoin_hashes = { version = "0.10", default-features = false }
2626
hashbrown = { version = "0.11", optional = true }

lightning/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ default = ["std"]
3737
[dependencies]
3838
bitcoin = { version = "0.27", default-features = false, features = ["secp-recovery"] }
3939
# TODO remove this once rust-bitcoin PR #637 is released
40-
secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] }
40+
secp256k1 = { version = "0.25.0", default-features = false, features = ["alloc"] }
4141

4242
hashbrown = { version = "0.11", optional = true }
4343
hex = { version = "0.4", optional = true }
@@ -50,7 +50,7 @@ core2 = { version = "0.3.0", optional = true, default-features = false }
5050
hex = "0.4"
5151
regex = "0.2.11"
5252
# TODO remove this once rust-bitcoin PR #637 is released
53-
secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] }
53+
secp256k1 = { version = "0.25.0", default-features = false, features = ["alloc"] }
5454

5555
[dev-dependencies.bitcoin]
5656
version = "0.27"

0 commit comments

Comments
 (0)