From 7822af8bd1ca000914163888efcdcd2308483614 Mon Sep 17 00:00:00 2001 From: Yuntai Kyong Date: Tue, 8 May 2018 21:43:34 +0900 Subject: [PATCH 1/1] Update dependency on secp256k1 pointing to https://github.com/rust-bitcoin/rust-secp256k1 --- Cargo.toml | 2 +- fuzz/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 } -- 2.30.2