Update dependency on secp256k1 pointing to https://github.com/rust-bitcoin/rust-secp256k1

This commit is contained in:
Yuntai Kyong 2018-05-08 21:43:34 +09:00
parent fb1bf30263
commit 7822af8bd1
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ fuzztarget = ["secp256k1/fuzztarget", "bitcoin/fuzztarget"]
bitcoin = "0.13"
rust-crypto = "0.2"
rand = "0.4"
secp256k1 = "0.9"
secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", branch = "master" }
[build-dependencies]
gcc = "0.3"

View file

@ -18,7 +18,7 @@ honggfuzz_fuzz = ["honggfuzz"]
[dependencies]
lightning = { path = "..", features = ["fuzztarget"] }
bitcoin = { version = "0.13", features = ["fuzztarget"] }
secp256k1 = { version = "0.9", features = ["fuzztarget"] }
secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", branch = "master" , features=["fuzztarget"]}
rust-crypto = "0.2"
honggfuzz = { version = "0.5", optional = true }
afl = { version = "0.3", optional = true }