From: Yuntai Kyong Date: Tue, 8 May 2018 12:43:34 +0000 (+0900) Subject: Update dependency on secp256k1 pointing to https://github.com/rust-bitcoin/rust-secp256k1 X-Git-Tag: v0.0.12~407^2~2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=7822af8bd1ca000914163888efcdcd2308483614;p=rust-lightning Update dependency on secp256k1 pointing to https://github.com/rust-bitcoin/rust-secp256k1 --- diff --git a/Cargo.toml b/Cargo.toml index e8570e25..3b692790 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 9b718bad..fc40a342 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -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 }