Browse Source
Change to secp256k1-zkp upstream
Our patches have been accepted.
hotfix/0.1.1
Thomas Eizinger
3 years ago
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
2 changed files with
3 additions and
3 deletions
-
Cargo.lock
-
cfd_protocol/Cargo.toml
|
|
@ -2391,7 +2391,7 @@ dependencies = [ |
|
|
|
[[package]] |
|
|
|
name = "secp256k1-zkp" |
|
|
|
version = "0.4.0" |
|
|
|
source = "git+https://github.com/klochowicz/rust-secp256k1-zkp?branch=ecdsa-signatures-release-build#e8692101e357fbda0a613023e0cd3e36457d9bf4" |
|
|
|
source = "git+https://github.com/ElementsProject/rust-secp256k1-zkp#c8ff901516c9c299c9cc7331b15a7a14a05ced89" |
|
|
|
dependencies = [ |
|
|
|
"rand 0.6.5", |
|
|
|
"secp256k1", |
|
|
@ -2402,7 +2402,7 @@ dependencies = [ |
|
|
|
[[package]] |
|
|
|
name = "secp256k1-zkp-sys" |
|
|
|
version = "0.4.0" |
|
|
|
source = "git+https://github.com/klochowicz/rust-secp256k1-zkp?branch=ecdsa-signatures-release-build#e8692101e357fbda0a613023e0cd3e36457d9bf4" |
|
|
|
source = "git+https://github.com/ElementsProject/rust-secp256k1-zkp#c8ff901516c9c299c9cc7331b15a7a14a05ced89" |
|
|
|
dependencies = [ |
|
|
|
"cc", |
|
|
|
"secp256k1-sys", |
|
|
|
|
|
@ -9,7 +9,7 @@ bdk = { version = "0.12", default-features = false } |
|
|
|
bit-vec = "0.6" |
|
|
|
itertools = "0.10" |
|
|
|
rand = "0.6" |
|
|
|
secp256k1-zkp = { git = "https://github.com/klochowicz/rust-secp256k1-zkp", branch = "ecdsa-signatures-release-build", features = ["bitcoin_hashes", "global-context", "serde"] } |
|
|
|
secp256k1-zkp = { git = "https://github.com/ElementsProject/rust-secp256k1-zkp", features = ["bitcoin_hashes", "global-context", "serde"] } |
|
|
|
thiserror = "1" |
|
|
|
|
|
|
|
[dev-dependencies] |
|
|
|