-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update libsecp to latest ersion; bump major version number #384
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
2932179
secp256k1-sys: update secp256k1.h.patch
apoelstra 8294ea3
secp256k1-sys: update upstream library
apoelstra f3d48a2
update "should terminate abnormally" test to trigger a different ARG_…
apoelstra d06dd20
update fuzzdummy API to match normal API
apoelstra aa51638
update changelog for 0.22.0
apoelstra File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "secp256k1" | ||
version = "0.21.3" | ||
version = "0.22.0" | ||
authors = [ "Dawid Ciężarkiewicz <[email protected]>", | ||
"Andrew Poelstra <[email protected]>" ] | ||
license = "CC0-1.0" | ||
|
@@ -37,7 +37,7 @@ global-context = ["std"] | |
global-context-less-secure = [] | ||
|
||
[dependencies] | ||
secp256k1-sys = { version = "0.4.2", default-features = false, path = "./secp256k1-sys" } | ||
secp256k1-sys = { version = "0.5.0", default-features = false, path = "./secp256k1-sys" } | ||
serde = { version = "1.0", default-features = false, optional = true } | ||
|
||
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable | ||
|
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-sys" | ||
version = "0.4.2" | ||
version = "0.5.0" | ||
authors = [ "Dawid Ciężarkiewicz <[email protected]>", | ||
"Andrew Poelstra <[email protected]>", | ||
"Steven Roose <[email protected]>" ] | ||
|
@@ -12,7 +12,7 @@ description = "FFI for Pieter Wuille's `libsecp256k1` library." | |
keywords = [ "secp256k1", "libsecp256k1", "ffi" ] | ||
readme = "README.md" | ||
build = "build.rs" | ||
links = "rustsecp256k1_v0_4_1" | ||
links = "rustsecp256k1_v0_5_0" | ||
|
||
# Should make docs.rs show all functions, even those behind non-default features | ||
[package.metadata.docs.rs] | ||
|
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,2 +1,2 @@ | ||
# This file was automatically created by ./vendor-libsecp.sh | ||
1758a92ffd896af533b142707e9892ea6e15e5db | ||
a1102b12196ea27f44d6201de4d25926a2ae9640 |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
src/precomputed_ecmult.c linguist-generated | ||
src/precomputed_ecmult_gen.c linguist-generated |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note: In upstream, we compile these to a separate object which is then linked to the actual library code. This saves compilation time in the common case that the code has changed but tables haven't. But it's probably not worth the hassle here because we never touch the C code here, not even during development.