-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #732: Fix hashes version range in 0.29.1
f74877a Release version 0.29.1 (Martin Habovstiak) 7ad2f2e Don't use `core::i32::MAX` (Martin Habovstiak) 05c5937 Update panic message handling (Martin Habovstiak) 938dba6 Whitelist known cfgs (Martin Habovstiak) ad69619 Fix the `hashes` dependency range. (Martin Habovstiak) caf2f1a Deprecate the `hashes` reexport (Martin Habovstiak) Pull request description: See rust-bitcoin/rust-bitcoin#3296 (comment) ACKs for top commit: apoelstra: ACK f74877a; tested final commit locally Tree-SHA512: adebf04d91e46c7952b7bc3a2cfa64c2d372a6c7295e57c356be72862292e23e7d8e04be47843634cb7680272894f1c66414ebc1e724abaec025938312d89901
- Loading branch information
Showing
8 changed files
with
27 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "secp256k1" | ||
version = "0.29.0" | ||
version = "0.29.1" | ||
authors = [ "Dawid Ciężarkiewicz <[email protected]>", | ||
"Andrew Poelstra <[email protected]>" ] | ||
license = "CC0-1.0" | ||
|
@@ -41,7 +41,7 @@ serde = { version = "1.0.103", default-features = false, optional = true } | |
|
||
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable | ||
# the respective -std feature e.g., hashes-std | ||
hashes = { package = "bitcoin_hashes", version = ">= 0.12, <= 0.14", default-features = false, optional = true } | ||
hashes = { package = "bitcoin_hashes", version = ">= 0.12, < 0.15", default-features = false, optional = true } | ||
rand = { version = "0.8", default-features = false, optional = true } | ||
|
||
[dev-dependencies] | ||
|
@@ -54,6 +54,8 @@ bincode = "1.3.3" | |
wasm-bindgen-test = "0.3" | ||
getrandom = { version = "0.2", features = ["js"] } | ||
|
||
[lints.rust] | ||
unexpected_cfgs = { level = "deny", check-cfg = ['cfg(bench)', 'cfg(secp256k1_fuzz)', 'cfg(rust_secp_no_symbol_renaming)'] } | ||
|
||
[[example]] | ||
name = "sign_verify_recovery" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters