-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #257 from apoelstra/2020-12--no-endo
update libsecp, remove endomorphism feature flag and release 0.20.0
- Loading branch information
Showing
107 changed files
with
6,635 additions
and
6,325 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "secp256k1" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = [ "Dawid Ciężarkiewicz <[email protected]>", | ||
"Andrew Poelstra <[email protected]>" ] | ||
license = "CC0-1.0" | ||
|
@@ -14,20 +14,19 @@ autoexamples = false # Remove when edition 2018 https://github.com/rust-lang/car | |
|
||
# Should make docs.rs show all functions, even those behind non-default features | ||
[package.metadata.docs.rs] | ||
features = [ "rand", "rand-std", "serde", "recovery", "endomorphism" ] | ||
features = [ "rand", "rand-std", "serde", "recovery" ] | ||
|
||
[features] | ||
unstable = ["recovery", "rand-std"] | ||
default = ["std"] | ||
std = ["secp256k1-sys/std"] | ||
rand-std = ["rand/std"] | ||
recovery = ["secp256k1-sys/recovery"] | ||
endomorphism = ["secp256k1-sys/endomorphism"] | ||
lowmemory = ["secp256k1-sys/lowmemory"] | ||
global-context = ["std", "rand-std"] | ||
|
||
[dependencies] | ||
secp256k1-sys = { version = "0.3.1", default-features = false, path = "./secp256k1-sys" } | ||
secp256k1-sys = { version = "0.4.0", default-features = false, path = "./secp256k1-sys" } | ||
bitcoin_hashes = { version = "0.9", optional = true } | ||
rand = { version = "0.6", default-features = false, optional = true } | ||
serde = { version = "1.0", default-features = false, optional = true } | ||
|
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-sys" | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
authors = [ "Dawid Ciężarkiewicz <[email protected]>", | ||
"Andrew Poelstra <[email protected]>", | ||
"Steven Roose <[email protected]>" ] | ||
|
@@ -12,11 +12,11 @@ description = "FFI for Pieter Wuille's `libsecp256k1` library." | |
keywords = [ "secp256k1", "libsecp256k1", "ffi" ] | ||
readme = "README.md" | ||
build = "build.rs" | ||
links = "rustsecp256k1_v0_3_1" | ||
links = "rustsecp256k1_v0_4_0" | ||
|
||
# Should make docs.rs show all functions, even those behind non-default features | ||
[package.metadata.docs.rs] | ||
features = [ "recovery", "endomorphism", "lowmemory" ] | ||
features = [ "recovery", "lowmemory" ] | ||
|
||
[build-dependencies] | ||
cc = "1.0.28" | ||
|
@@ -27,7 +27,6 @@ libc = "0.2" | |
[features] | ||
default = ["std"] | ||
recovery = [] | ||
endomorphism = [] | ||
lowmemory = [] | ||
std = [] | ||
|
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,2 +1,2 @@ | ||
# This file was automatically created by ./vendor-libsecp.sh | ||
63150ab4da1ef13ebfb4396064e1ff501dbd015e | ||
98dac87839838b86094f1bccc71cc20e67b146cc |
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
2 changes: 1 addition & 1 deletion
2
secp256k1-sys/depend/secp256k1/build-aux/m4/ax_prog_cc_for_build.m4
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
Oops, something went wrong.